Query in Upgrading ClearCase on SunOS 5.8

Hi All,
Can I upgrade ClearCase 2002.05.00 (ver-5) to ClearCase version 7 on my current server Sun OS5.8
Current VOB database schema version is 53
Thanks.

Few people in the Installation and Setup forum are likely to know about PHP. I'll request a moderator repost your thread in the Unix forum, where setting those things up is more commonly seen. In the meantime, you may also want to check the Entropy PHP website:
http://www.entropy.ch/software/macosx/php
where many more Mac OS X PHP users reside and many tools exist.

Similar Messages

  • Slow running query after upgrading to Oracle 10.2.0.4

    Hello
    I had posted a query in Database Upgrade section , but all in vian as i have had no replies . So i am posing this in general section as i can now confirm with the exact query issue .
    1. I upgraded my oracle instance windows 64 bit from 10.2.0.1 to 10.2.0.4
    2. All is good except when i use SUM or MAX in queries i get a very slow performance below is the complete example
    Your help is much appreciated .
    Regards
    Harshad
    =====================================================================================================
    Example.
    =====================================================================================================The query runs on a single table of 275,000,000 records, partitioned by Feed_Id in 53 partitions:-
    SELECT *
    FROM Fact_Life
    WHERE Life_Id = 11555269
    AND Feed_Id = 2;
    This returns 18 rows in sub-second response time.
    Explain Plan for it:-
    SELECT *
    FROM Fact_Life
    WHERE Life_Id = 11555269
    AND Feed_Id = 2;
    Statement Id=3 Type=INDEX
    Cost=938 TimeStamp=11-06-09::11::25:55
    (1) SELECT STATEMENT ALL_ROWS
    Est. Rows: 66 Cost: 940
    (4) PARTITION RANGE SINGLE
    Est. Rows: 66 Cost: 940
    (3) TABLE TABLE ACCESS BY GLOBAL INDEX ROWID RDS.FACT_LIFE [Analyzed]
    Blocks: 2,765,931 Est. Rows: 66 of 275,979,985 Cost: 940
    (2) INDEX INDEX SKIP SCAN RDS.PIX_FTLE_1 [Analyzed]
    Est. Rows: 3 Cost: 938
    However, when the query employs an aggregate function:-
    SELECT MAX(Cap_Period_Id)
    FROM Fact_Life
    WHERE Life_Id = 11555269
    AND Feed_Id = 2;
    This takes anything from 200-400 seconds to return.
    Explain plan for it:-
    SELECT MAX(CAP_Period_Id)
    FROM Fact_Life
    WHERE Life_Id = 11555269
    AND Feed_Id = 2;
    Statement Id=3 Type=PARTITION RANGE
    Cost=7 TimeStamp=11-06-09::11::26:50
    (1) SELECT STATEMENT ALL_ROWS
    Est. Rows: 1 Cost: 7
    (5) SORT AGGREGATE
    Est. Rows: 1
    (4) FIRST ROW
    Est. Rows: 66 Cost: 7
    (3) PARTITION RANGE SINGLE
    Est. Rows: 66 Cost: 7
    (2) INDEX INDEX RANGE SCAN (MIN/MAX) RDS.PIX_FTLE_1 [Analyzed]
    Est. Rows: 66 Cost: 7
    However when the query is run with a different Life_Id for the same partition:-
    SELECT MAX(Cap_Period_Id)
    FROM Fact_Life
    WHERE Life_Id = 11555275
    AND Feed_Id = 2;
    Returns sub-second.
    Explain plan for it:-
    SELECT MAX(CAP_Period_Id)
    FROM Fact_Life
    WHERE Life_Id = 11555275
    AND Feed_Id = 2;
    Statement Id=3 Type=PARTITION RANGE
    Cost=7 TimeStamp=11-06-09::11::29:29
    (1) SELECT STATEMENT ALL_ROWS
    Est. Rows: 1 Cost: 7
    (5) SORT AGGREGATE
    Est. Rows: 1
    (4) FIRST ROW
    Est. Rows: 66 Cost: 7
    (3) PARTITION RANGE SINGLE
    Est. Rows: 66 Cost: 7
    (2) INDEX INDEX RANGE SCAN (MIN/MAX) RDS.PIX_FTLE_1 [Analyzed]
    Est. Rows: 66 Cost: 7
    Is this a problem with b-tree indexes? The Life_Id is allocated from a sequence and there are 67,535,682 rows in the partition. The stats are up to date.
    =====================================================================================================
    =====================================================================================================

    Hello Randolf,
    Sorry for the late reply was down with flue and could not mail , as mentioned i below is the DDL for PIX_FTLE_1 & PIX_FTLE_2 . I have used TOAD to extract the script.
    As i cant send the both the DDL in single post i will send it in 2 post , There is a limit of 30000 characters in sigle post .
    Thanks once again for your help .
    Regards
    Harshad
    CREATE INDEX RDS.PIX_FTLE_1 ON RDS.FACT_LIFE
    (FEED_ID, CAP_PERIOD_ID, LIFE_ID, ISO_CURRENCY_ID, LIFE_SCD_ID)
    TABLESPACE RDS_TABLESPACE01
    INITRANS 2
    MAXTRANS 255
    LOGGING
    GLOBAL PARTITION BY RANGE (FEED_ID) (
    PARTITION HA1 VALUES LESS THAN (2)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 1225M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NU6 VALUES LESS THAN (3)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 2761M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION FP1 VALUES LESS THAN (4)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 971M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION PRU VALUES LESS THAN (5)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 993M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION GAC VALUES LESS THAN (6)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 622M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NU3 VALUES LESS THAN (7)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 2136M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION LEG VALUES LESS THAN (8)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 847M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RSC VALUES LESS THAN (9)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 144M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SW1 VALUES LESS THAN (10)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 80M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION PRI VALUES LESS THAN (11)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 34M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION BAL VALUES LESS THAN (12)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 128M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NA1 VALUES LESS THAN (13)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION MID VALUES LESS THAN (14)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION EGS VALUES LESS THAN (15)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION ARK VALUES LESS THAN (16)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 1088M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SKA VALUES LESS THAN (17)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 136M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NU1 VALUES LESS THAN (18)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 196M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SK2 VALUES LESS THAN (19)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 9M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION CU1 VALUES LESS THAN (20)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 11M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION DLI VALUES LESS THAN (21)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION AEG VALUES LESS THAN (22)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION COM VALUES LESS THAN (23)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION CU2 VALUES LESS THAN (24)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION CUL VALUES LESS THAN (25)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION EAG VALUES LESS THAN (26)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION FP2 VALUES LESS THAN (27)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION HAG VALUES LESS THAN (28)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION HAL VALUES LESS THAN (29)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION JRA VALUES LESS THAN (30)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION LEL VALUES LESS THAN (31)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION MGA VALUES LESS THAN (32)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION MGM VALUES LESS THAN (33)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION NU2 VALUES LESS THAN (34)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION PEG VALUES LESS THAN (35)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RLM VALUES LESS THAN (36)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RL2 VALUES LESS THAN (37)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RL3 VALUES LESS THAN (38)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RL4 VALUES LESS THAN (39)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RL5 VALUES LESS THAN (40)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION BG4 VALUES LESS THAN (41)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION BG5 VALUES LESS THAN (42)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RS2 VALUES LESS THAN (43)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RS3 VALUES LESS THAN (44)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION RS4 VALUES LESS THAN (45)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SA1 VALUES LESS THAN (46)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SAF VALUES LESS THAN (47)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SCA VALUES LESS THAN (48)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SL1 VALUES LESS THAN (49)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SL2 VALUES LESS THAN (50)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SPI VALUES LESS THAN (51)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION SWP VALUES LESS THAN (52)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION VDL VALUES LESS THAN (53)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 240M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION ZUR VALUES LESS THAN (54)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION AR3 VALUES LESS THAN (55)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 360M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    PARTITION ZZZ VALUES LESS THAN (MAXVALUE)
    NOLOGGING
    NOCOMPRESS
    TABLESPACE RDS_TABLESPACE01
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    NOPARALLEL;

  • Error when executing a query on upgraded system

    Hi All,
    We are in the process of upgrading our BI system. Currently we are on Quality system and its a copy of existing production system. I have executed a query on the production system (3.5 system) successfully.
    But the same query when I'm trying to execute on the upgraded quality system (BI 7.0), I get an error " warning info provider was changed or activated at runtime. The query cannot be opened". The same message doesn't pop up on the current 3.5 BI system.
    Can anyone help me how I can correct this error?
    regards,
    Suman

    Hi All,
    I activated the Infoset and I could eliminate the error. Now the issue is solved.
    Thanks

  • ABAP Query in Upgradation from 4.7 to ECC6.0

    Hi there,
    We are upgrading SAP system from 4.7 to ECC6.0. We have s/w component SAP_BASIS = 700.
    It would be of great help if anybody share their thought on handling ABAP queries after upgradation from 4.7 to ECC6.0.
    We have refered SAP notes 132813 and 672784 where in we need to change the default query area.
    Also, do we need to re-genarate the queries? If yes then how can we achive the same.
    Thanks in advance.

    Hi,
    It may happen that some times, the queries are not generated after the upgrade.
    Hence call the FM: RSAQ_GENERATE_PROGRAM
    Pass the Query name and user group.
    For all global queries: refer table AQGQCAT and local/client specific queries: Refer to AQLQCAT.
    This can help to regenerate the queries.
    You can also write a small program to generate using the above FM(one time program) that runs after upgrade
    Hope this helps
    Regards
    Shiva

  • Can't execute query after upgrading to 7.0

    Hi
    After upgrading from 3.5 to 7.01 some users can't execute queries. After opening the query in BEx Analyser (3.5 version) nothing happens, just a 'blank' excel screen. And then I again can try to open the query.
    If they execute the same query by a workbook there is no problems.
    I made a copy of one of the users and then no problems.
    Any hint or solutions?

    Dear All,
    I am facing the same issue: I am not able to run BEx3.5- queries in Excel 2010 (I can log on, select the query but then nothing happens...), with 7.0- queries everything works fine. For another user with exactly the same profile, the issue doesn't occur.
    Were you able to fix the issue, and if yes, what needs to be done?
    Regards,
    Harald

  • Query regarding upgrading protection mode in a data guard

    I am using Oracle 10g in Linux platform
    Consider that I have a logical standby and a physical standby and now I want to upgrade the protection mode of physical standby but want the logical standby to retain the protection mode .
    According to the Oracle documentation they have specified that the following statement has to be issued from primary to upgrade protection mode of a standby
    SQL > Alter database set standby database to maximum availability;So to which standby this statement will refer to, whether logical standby or physical standby?

    Hi,
    What you want to do is very possible. Please not however the protection mode DOES NOT apply to a standby when you say a database has a certain protection mode, it applies to the primary.
    First to be in maximum availability you have to issue the command you state, and that applies to the primary, it is now in maximum availability but to get there it must have ONE standby that uses LGWR SYNC as the transport mechanism with AFFIRM.
    You can also have other standby's running from this primary, that DO NOT have to use LGWR SYNC, but can use the other available tranport mechanisms.
    This is explained here:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28294/protection.htm#CHDEDGIF
    cheers,
    jason.
    http://jarneil.wordpress.com

  • Query regarding upgrading speed after phone call.

    Hi
    I'm hoping someone can help point me in the right direction as I'm not sure about the following.
    Around January this year I went broadband and received a 7mb connection and noticed that I was due to be upgraded in my area to 11mb in March and the sales confirmed It would be upgraded when it arrives.
    So yesterday I did a check and it says 11mb now through BT check site, so I have checked my connection through the speed test and hub.
    Speed test results.
    Download speed achieved during the test was - 6104 Kbps
    For your connection, the acceptable range of speeds is 600-7150 Kbps.
    Additional Information:
    Your DSL Connection Rate :8128 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
    IP Profile for your line is - 7150 Kbps.
    My home hub records this.
    Line state
    Connected
    Connection time
    0 days, 17:31:56
    Downstream
    8,128 Kbps
    Upstream
    448 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.1
    Latency type
    Fast
    Noise margin (Down/Up)
    4.6 dB / 22.0 dB
    Line attenuation (Down/Up)
    29.0 dB / 18.0 dB
    Output power (Down/Up)
    19.8 dBm / 12.2 dBm
    It has ip profile at 7150Kpbs which I take is my locked connection speed.
    I have phoned the help line and a gentleman told me all is ok and I'm upgraded to the new speed  yet my ip and DSL connection rate are not the 11mb so I was hoping or wondering if this need to be changed and the gentleman may not have understood what I was trying to say.
    Do BT just upgrade when your area has been done or do I have to phone again to double check I now have the new improved speed?
    I would be very grateful for any help on the above.
    Mhis
    Solved!
    Go to Solution.

    Just to say I phoned the number who then put me through to tech team who then told me that even though BT site shows 11mb now in my area on my number it maybe until September when the upgrade is available.
    The young lady gave me another number and told me they would be able to tell me when the upgrade would be likely and the number was 0800 0853608.
    I gave this number a ring and I believe its BT wholesales and a nice chap simply said he can't help me with that.
    So I guess even though the checker here BT check your speed shows me 11mb now it must be wrong as its not available. A little bit confused over that!

  • Query regarding UPGRADE SAP NW BI 7.0 to BW 7.3

    Hi,
    What are the prerequests needed to upgrade from NW7.0(EHP1) BI system to new SAP BW 7.3 ? is it possible?
    if YES, what are things need to taken care. if NO what are the prerequest need to be done in existing NW 7.0 (EHP1) BI system?
    Your response is highly appreciated.

    Hello,
    If you mean the BI Content then you can check the pre-requisites from the Info file from the download path
    Regards,
    Anand

  • Quick query regarding upgrade work

    I live in pevensey bay in east sussex. We recieved an email yesterday saying there would be upgrade work taking place at some point today, and we would lose our broadband and phones for a while. we're on option 2 for broadband on the up to 8MB plan. We usually get about 2MB.
    This may be completely unrelated, but we had a huge storm earlier. The homehub lost sync for a few minutes, and now it's come back up, it's got a downstream speed of 2,624 Kbps. Our normal speed is about 1,097 Kbps, but this drops down to about 512Kbps after a few days.
    The speed increase is very strange, and it seems to be staying at that speed, which it has NEVER done before.
    Does anyone (preferably from bt) know whether this speed increase is anything to do with the work we were told would take place today, or is it completely unrelated?
    I would try rebooting the homehub to see if it syncs above 2MB still, but I don't want to risk the possibility of the speed lowering again...lol.

    There's an alternative explanation. A poor connection somewhere on the line will cause a high resistance ("HR") fault. A characteristic of this is bursts of noise which force the router to resync at progressively lower speeds, until a stable rate is established. A storm can temporarily clear an HR fault by movement of the overhead wiring (this happened to me). Sadly, the fault will come back again. Another characteristic of an HR fault is a rustling or crackling noise in the background of telephone calls. Try this: dial 17070, pick option 2, (BT Line Test, quiet line) and listen. You should hear almost nothing. If you DO hear noises, report your phone faulty as "noisy line" - that will also be causing the slow broadband.
    Note that if the router syncs at a very low speed, it WON'T restore itself if the line condition improves. You have to force a resync yourself (reboot or just disconnect the line for a few seconds). That's just the way the system works....

  • No upgrade check query for B1 8.8 in Note 1000846

    Hi Experts,
    I see that there is no upgrade check for B1 8.8 in SAP note 1000846 untul present. Is it difficult to develop it or just use existing one ? I am not sure if we can go on to upgrade without the query of upgrade check.
    Steve

    Dear Steve,
    In Business One 8.8 version Pre-Upgrade checks are a part of the Upgrade Wizard. SAP Note [1357462|https://websmp130.sap-ag.de/sap(bD1odSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1357462] encloses all the SAP Notes for pre-upgrade checks. Always refer to this collective SAP Note for the latest pre-upgrade check list and details.
    For more information regarding Pre-Upgrade Checks under 8.8 please refer to the "Upgrade Wizard Online Help" or to the "Administrator's Guide 8.8 SQL", which can be found on the Documentation Resource Centre on the Portal.   
    hope it helps,
    Regards,
    Ladislav Meszaros
    SAP Business One Forum Team

  • Upgrading VRAT 2.0 to Compliance Calibrator 4.0

    Hi,
    I have one query regarding upgradation of VRAT2.0 to CC 4.0.
    Earlier,I was supplied 4 Transport requests,importing which in a proper sequence will install the CC 4.0.While importing the first one,I encountered the follwoing error :
    "Enter a valid transport request/correction 
    ObjRead >>___1: ..00:00:00 hh:mm:ss        
    No object to be deleted and activated exists"
    But,while searching on Marketplace I found an ADDON "K-400COINVIRSA.CAR" for installing CC 4.0.I also found another one - "K-400COINVIRSANH.CAR".
    1.Now,what method shall I adopt for installing CC 4.0 and which package?
    According to note 861556,some objects should not exist in the system where the package is to be imported,but as we are already having VRAT 2.0,the following objects exist in our system :
    Authorization Object class - ZVRA
    Authorization Objects - ZVRAT_0001,ZVRAT_0002,ZVRAT_0003
    2.How to go ahead for the upgradation in this type of scenario ? Shall I delete the objects manually ?
    Thanks in advance.
    s<i><b>A</b></i>mik.

    can you pl have a look to https://websmp202.sap-ag.de/~form/sapnet?_FRAME=OBJECT&_HIER_KEY=501100035870000015092&_HIER_KEY=601100035870000206624&_HIER_KEY=701100035871000499139&_SCENARIO=01100035870000000202&#HOME
    Cheers,
    -Sunil

  • Report S_ALR_87012296

    hi all
    i was searching for a report give me information about documnt header and line items and that if i seach by username and posting date
    i found this report S_ALR_87012296
    it give me
    documnt no
    posting date
    user name
    referance
    header text
    GL account no
    GL account name
    cost center no
    profit center no
    vendor no
    custome no
    text
    but how i add assignment no
    and cost center name and profit center name and vendor name and customer name
    or is there any other report give me what i want

    Hello
    You can use SQ01 for this. Please visit the following help documentation link for details :
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/d2/cb3efb455611d189710000e8322d00/frameset.htm.
    Please also check the sap note 723577 (SAP Query: Release upgrade and new generation) in this regard.
    I hope this is useful.
    Suresh Jayanthi.

  • Using Oracle driver 10.1

    Hi,
    Our application is running on weblogic 8.1 SP5 and Oracle 9i and we are using ojdbc14.jar for Oracle 9i. Recently there has been an issue with a query written in Java which takes long time to execute. We have modified the query and upgraded the ojdbc jar to version 10.1.
    It is working fine as a standalone application but before deploying it for integration testing wanted to check if there could be any issues using this configuration?
    If there are any known issues around using Oracle 10 driver, please let me know.
    Appreciate your help.
    Thanks
    Minal

    Minal Menghani wrote:
    Hi,
    Our application is running on weblogic 8.1 SP5 and Oracle 9i and we are using ojdbc14.jar for Oracle 9i. Recently there has been an issue with a query written in Java which takes long time to execute. We have modified the query and upgraded the ojdbc jar to version 10.1.
    It is working fine as a standalone application but before deploying it for integration testing wanted to check if there could be any issues using this configuration?
    If there are any known issues around using Oracle 10 driver, please let me know.
    Appreciate your help.
    Thanks
    MinalNone. The 10g driver is good. I would suggest the latest version from Oracle,
    the 10.2 version.
    Joe

  • Error Migración 2005 a 2007

    Buenas tardes...
    Estoy intentando de realizar una migracion de cliente SAP 2005 a la version 2007 y sin embargo me arroja un mensaje de error: "La BD de la sociedad GL no es consistente. Para mas información consulte el archivo log de SAP Business One. ", ya verifique el log y solo informa de un error en la BD.
    estuve buscando en el foro y encontre que me refiriera a las notas: 1000846 y 976218
    Las mismas me refieren a una linea de nota tras nota... y al final se llega hasta unos querys: --Run this query before upgrading on company DB y el otro de --Backup XLR UDF definitions in common DB
    ambos fueron corridos en la BD antes de realizar la migración... pero sigue arrojando el mismo error.
    Conocen alguna otra nota que pueda ayudarme??...
    PD: el primer query solo arroja el siguiente resultado: Please refer to Note : 976218. Check if you have reports designed in XL Reporter with UDFs before Upgrading
    Pero el cliente no posee ningun reporte realizado en XL Report (de hecho no tiene ni licencia ni instalado el servicio de XL reporter) por lo que no es ese inconveniente. Adicionalmente y por no dejar igual lo verifique y realice las actividades para descartar pero no arrojo nada.
    El segundo query no arrojo ningún resultado.

    Hola Juan
    ¿Tienes algun add on instalado o algun desarrollo a la medida?
    Este error lo he visto con algunas bases de datos que manejan add ons, debido a que estos generan tablas de usuario, como sabes las tablas de usuario normalemente las creamos dentro de SAP , pero al tener algun Add on de un tercero, las tablas de crean directamente en SQL (poir decirlo de alguna manera)
    Hay una nota en SAP  que explica esto y te dice que corras un query, donde te arrojara las tablas que se hayan creado directamente, la solucion  es respaldar estas tablas, eliminarlas y despues del upgrade, volver a montarlas
    La nota es la 1056335
    la consulta es
    select * from sysobjects where like '@%'
    and name not in
    (select '@'+tablename from outb) and xtype='U'
    Te sugiero que lo hagas en un servidor de pruebas primero
    Saludos y ojala te se ade utilidad
    Saludos
    Yeniffer

  • @mtownsen, what is possible, where is the limit

    Hello Tom,
    there are different opinions and every person sais something different.
    Which features does the standard editon or standard one edition support, the "Oracle Database 10g Express Edition" will not support?
    In your PodCast you said, beside the RAM, CPU and userspace limit all three support the same. The Release Notes you had on your site tells something different.
    Is the spacelimit of 4 GB a hard limit or a soft limit? In 4GB limitation questions tkyte wrote, that it is a soft limit. So what can I do to be informed when my limit is reached. Should I check the Database every day?
    In case of the limit is reached: Can I then go to your shop, buy, for example a one year license for the "Oracle Database 10g standard edition one" and install this OVER the Express Edition? Will it be such simple?
    Thank you for you answer,
    Christian

    I will compile a complete list of what is not supported in XE and post in a day or two.
    As Tom has shown, the 4 Gb space limit is a hard limit. We will consider adding a 'space left' indicator to the home page. You can also check via the command line running a query.
    Upgrade, for awhile, will consist of installing one of the licensed editions, and then running exp/imp to migrate the data/applications. We will provide documentation on how to do this by the production release of XE.
    At some stage in the future, when you install one of the licensed editions, it will detect that you have XE installed, and then offer to upgrade it for you via the Database Upgrade Utility.

Maybe you are looking for

  • Help Please I can't print IE or Safari with 10.4.4

    Can anybody HELP ME PLEASE. I have upgraded to 10.4.4 and now I can't print from Internet Explorer or Safari. I don't have any problems with Mail or any other programs. I just can't print any web pages and I need to do that often. I have tried all th

  • Lightroom crash when attempting to log in to mobile

    Running Lightroom 5.6 under Windows 7 Pro. Each time I attempt to log into Lightroom mobile, I get a crash. The application appears to be making contact to the server (window pops up, blue square animation), but crashes every time. I'm installing Lig

  • Wait for a file and start execute a scenario process

    What is the best way to achive: Wait for a file and then once the file in droped...execute a scenario process. Sample scenario: - Admin user ftp the file to a target directory on Unix (export/home/odi/input/files) - A scheduled scenario package will

  • How to rebuild index on a table in a faster way

    Hi All, We have using Oracle 9.2.0.3 On weekly basis we are loading around 20-30 million of data into a table using sqlloader. Before loading the data into the table, we are dropping all the indexes adn rebuilding the same once done. There are 6 inde

  • COPA Assessment Cycles and FI Period closing.

    Hi Gurus, I have question related to the COPA Assessment cycles. We have closed the FI Period 03 and running the COPA Assessment cycles. while running the same, for few of the assesment cycles are completed and for the rest of the few  cycles it is e