Slow Running Queries after IMPDP

Hi Xperts
I have been doing table data and sequences restore every day, because the user ask for it.
The user works with the Data Base to test some applications and at the end of the day
I do table data restore to return the information to some point.
I truncate every table, disable Constraints, disable Triggers and then I do and IMPDP
of table data and sequences, then I enable Triggers, Constraints and at the
end I execute statistics. This procedure is Only for one Schema.
The problem is that some days the queries work fine, but, others days the queries work slowly.
The procedure is the same every day.
This is a Test Data Base: 11g R2, ASM under Oracle Linux 5.8 64bits
Any advice ? why do some days the queries work properly ? others days work Slowly ?
I execute statistics like this:
exec dbms_stats.gather_schema_stats('MYSCHEMA');
exec dbms_stats.gather_database_stats;
exec dbms_stats.gather_dictionary_stats;
IMPDP:
impdp system/oracle1 FULL=NO SCHEMAS=MYSCHEMA CONTENT=DATA_ONLY directory=IMPDP_DIR dumpfile=Full_MYSCHEMA.dmp logfile=IMPDP_Full_MYSCHEMA.log
impdp system/oracle1 FULL=NO SCHEMAS=MYSCHEMA CONTENT=METADATA_ONLY INCLUDE=SEQUENCE directory=IMPDP_DIR dumpfile=Full_MYSCHEMA.dmp logfile=IMPDP_Full_MYSCHEMAseq.log
Thank you in advance
J.A.

The problem could be statistics. A simple fix would be to lock the statistics at the end of a day when performance is OK, and don't try to gather them again.
By the way, a much better way to do this (better in terms of work for you and repeatable behaviour for your client) would be to enable database flashback for this sort of thing rather than repeatedly importing. Flashback requires Enterprise Edition licences.
John Watson
Oracle Certified Master DBA
http://skillbuilders.com

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;

  • SAP B1 APPLICATION IS RUNNING SLOW IN SERVER AFTER UPGRADE

    Hi,
    The sap application is running slow in server after upgrading it from 9.0 to 9.1 it's taking 5-10 secs to open a document after clicking it and its taking more time in client system.
    what are the steps to be taken so that the application will run without any delay.
    Regards,
    Karthik B

    hi please check bellow thread ,it may help you
    Client Machines Logon to SAP Server is Very Slow
    update the status
    regards
    AKR

  • I am having a problem with very slow start up after expanding RAM on my 2009 Mac Pro.

    I am having a problem with very slow start up after expanding RAM on my 2009 Mac Pro (8 Core 2.93GHz). When I run the Mac Pro with 2 x 2Gb RAM it takes 4 seconds before the gray screen, chime and spinning wheel appear.However when I expand the RAM to 20GB the grey screen and chimes appear after a long 20+ second black screen.
    The RAM modules are paored  2 x 4GB Crucial CT51272BA1339.M18FMR and  6 x 2GB SAMSUNG M391B5673FH0-CH9, all DDR3 ECC.
    Reading articles on the internet, I thought it may be damaged RAM modules, but I have completed memtest and all are okay. I have tried changing the pairs around and if I use any paired 2 modules the Mac Pro starts normally, only when I try running more than 2 modules the delayed start up happens. (black screen 20 Seconds)
    I also have tried PRAM and SMU resets after changing the RAM setups, and the issues always occurs when I have more than 2 modules. As you can see I have 6 SAMSUNG modules and even with identical modules the issue happens, when increasing the RAM to more than 2 modules.
    The Mac Pro runs fine after the start up screen and can see all the modules, but has anyone else come across this issue, or have any ideas as to why my Mac Pro is taking 20 seconds to start up with 20 GB RAM?

    Hi there. Thanks for your comments.
    I have tried all the different combinations of RAM setup, and as stated in my initial topic, the Mac Pro boot up time only slows when I have more that 2 modules. Where I place these does not seem to make a difference.
    I have taken the Mac Pro to an Apple Reseller technician yesterday and they where not able to find any RAM errors. Apparently the boot up time is within Apple's acceptable parameters for this set up.
    Could anyone that is running a Mac Pro 2009 with more that 4 modules of RAM, please let me know if the boot up time is normal. ( the time it takes from pressing the power button to seeing the gray screen around 16 - 20 seconds)
    Or is anyone else having the same issues?
    thanks for your responce

  • Slow down Database after upgrading to 10.2.0.5

    Hi
    I am having performance problems after upgrading to 10.2.0.5
    At the beginning I thought the problem was sga too smalle ( ini: 598M , now 1408M ) but even after recreating the database with the new value the problem remains.
    I am sending reports so that someone could give me an idea.
    Thanks in advance!
    DETAILED ADDM REPORT FOR TASK 'TASK_240' WITH ID 240
    Analysis Period: 22-JUN-2011 from 08:34:06 to 16:00:13
    Database ID/Instance: 2462860799/1
    Database/Instance Names: DXT/DXT
    Host Name: thoracle
    Database Version: 10.2.0.5.0
    Snapshot Range: from 71 to 78
    Database Time: 6726 seconds
    Average Database Load: .3 active sessions
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    FINDING 1: 38% impact (2540 seconds)
    SQL statements consuming significant database time were found.
    RECOMMENDATION 1: SQL Tuning, 26% benefit (1763 seconds)
    ACTION: Investigate the SQL statement with SQL_ID "30rku9qg2y30j" for
    possible performance improvements.
    RELEVANT OBJECT: SQL statement with SQL_ID 30rku9qg2y30j and
    PLAN_HASH 2734400036
    select a.owner, a.object_name, INSTR(a.object_type, :"SYS_B_00"),
    :"SYS_B_01" from sys.all_objects a where a.object_type IN
    (:"SYS_B_02",:"SYS_B_03") and a.status = :"SYS_B_04" and a.owner
    like:"SYS_B_05"escape:"SYS_B_06" and a.object_name
    like:"SYS_B_07"escape:"SYS_B_08" union all select c.owner,
    c.synonym_name, INSTR(a.object_type, :"SYS_B_09"), :"SYS_B_10" from
    sys.all_objects a, sys.all_synonyms c where c.table_owner = a.owner
    and c.table_name = a.object_name and a.object_type IN
    (:"SYS_B_11",:"SYS_B_12") and a.status = :"SYS_B_13" and c.owner
    like:"SYS_B_14"escape:"SYS_B_15" and c.synonym_name
    like:"SYS_B_16"escape:"SYS_B_17" union all select distinct b.owner,
    CONCAT(b.package_name, :"SYS_B_18" || b.object_name),
    min(b.position), max(b.overload) from sys.all_arguments b where
    b.package_name IS NOT NULL and b.owner
    like:"SYS_B_19"escape:"SYS_B_20" and b.package_name
    like:"SYS_B_21"escape:"SYS_B_22" group by b.owner,
    CONCAT(b.package_name, :"SYS_B_23" || b.object_name) union all select
    distinct c.owner, CONCAT(c.synonym_name, :"SYS_B_24" ||
    b.object_name), min(b.position), max(b.overload) from
    sys.all_arguments b, sys.all_synonyms c where c.table_owner = b.owner
    and c.table_name = b.package_name and b.package_name IS NOT NULL and
    c.owner like:"SYS_B_25"escape:"SYS_B_26" and c.synonym_name
    like:"SYS_B_27"escape:"SYS_B_28" group by c.owner,
    CONCAT(c.synonym_name, :"SYS_B_29" || b.object_name) union all select
    distinct c.owner, c.synonym_name, min(b.position), max(b.overload)
    from sys.all_arguments b, sys.all_synonyms c where c.owner = b.owner
    and c.table_owner=b.package_name and c.table_name=b.object_name and
    c.owner like:"SYS_B_30"escape:"SYS_B_31" and c.synonym_name
    like:"SYS_B_32"escape:"SYS_B_33" group by c.owner, c.synonym_name
    RATIONALE: SQL statement with SQL_ID "30rku9qg2y30j" was executed 12270
    times and had an average elapsed time of 0.036 seconds.
    RATIONALE: Waiting for event "cursor: pin S wait on X" in wait class
    "Concurrency" accounted for 7% of the database time spent in
    processing the SQL statement with SQL_ID "30rku9qg2y30j".
    RECOMMENDATION 2: SQL Tuning, 23% benefit (1550 seconds)
    ACTION: Run SQL Tuning Advisor on the SQL statement with SQL_ID
    "7yv1ba0c8y86t".
    RELEVANT OBJECT: SQL statement with SQL_ID 7yv1ba0c8y86t and
    PLAN_HASH 2684283631
    Select WSTJ_.ROWID, WSTJ_.*, WMVD_.*
    From THPR.STOJOU WSTJ_, THPR.SMVTD WMVD_ Where ((WMVD_.VCRTYP_0(+) =
    WSTJ_.VCRTYP_0) AND (WMVD_.VCRNUM_0(+) = WSTJ_.VCRNUM_0) AND
    (WMVD_.VCRLIN_0(+) = WSTJ_.VCRLIN_0))
    And WMVD_.CCE2_0 = :1 And WSTJ_.IPTDAT_0 <= :2 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_0",:"SYS_B_1") <> :3 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_2",:"SYS_B_3") <> :4 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_4",:"SYS_B_5") <> :5 And
    ((WSTJ_.TRSFAM_0 = :6) Or (WSTJ_.TRSFAM_0 = :7))
    Order by WSTJ_.STOFCY_0,WSTJ_.UPDCOD_0,WSTJ_.ITMREF_0,WSTJ_.IPTDAT_0
    Desc,WSTJ_.MVTSEQ_0,WSTJ_.MVTIND_0
    RATIONALE: SQL statement with SQL_ID "7yv1ba0c8y86t" was executed 47
    times and had an average elapsed time of 32 seconds.
    RECOMMENDATION 3: SQL Tuning, 14% benefit (926 seconds)
    ACTION: Use bigger fetch arrays while fetching results from the SELECT
    statement with SQL_ID "7yv1ba0c8y86t".
    RELEVANT OBJECT: SQL statement with SQL_ID 7yv1ba0c8y86t and
    PLAN_HASH 2684283631
    Select WSTJ_.ROWID, WSTJ_.*, WMVD_.*
    From THPR.STOJOU WSTJ_, THPR.SMVTD WMVD_ Where ((WMVD_.VCRTYP_0(+) =
    WSTJ_.VCRTYP_0) AND (WMVD_.VCRNUM_0(+) = WSTJ_.VCRNUM_0) AND
    (WMVD_.VCRLIN_0(+) = WSTJ_.VCRLIN_0))
    And WMVD_.CCE2_0 = :1 And WSTJ_.IPTDAT_0 <= :2 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_0",:"SYS_B_1") <> :3 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_2",:"SYS_B_3") <> :4 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_4",:"SYS_B_5") <> :5 And
    ((WSTJ_.TRSFAM_0 = :6) Or (WSTJ_.TRSFAM_0 = :7))
    Order by WSTJ_.STOFCY_0,WSTJ_.UPDCOD_0,WSTJ_.ITMREF_0,WSTJ_.IPTDAT_0
    Desc,WSTJ_.MVTSEQ_0,WSTJ_.MVTIND_0
    FINDING 2: 37% impact (2508 seconds)
    Time spent on the CPU by the instance was responsible for a substantial part
    of database time.
    RECOMMENDATION 1: SQL Tuning, 26% benefit (1763 seconds)
    ACTION: Investigate the SQL statement with SQL_ID "30rku9qg2y30j" for
    possible performance improvements.
    RELEVANT OBJECT: SQL statement with SQL_ID 30rku9qg2y30j and
    PLAN_HASH 2734400036
    select a.owner, a.object_name, INSTR(a.object_type, :"SYS_B_00"),
    :"SYS_B_01" from sys.all_objects a where a.object_type IN
    (:"SYS_B_02",:"SYS_B_03") and a.status = :"SYS_B_04" and a.owner
    like:"SYS_B_05"escape:"SYS_B_06" and a.object_name
    like:"SYS_B_07"escape:"SYS_B_08" union all select c.owner,
    c.synonym_name, INSTR(a.object_type, :"SYS_B_09"), :"SYS_B_10" from
    sys.all_objects a, sys.all_synonyms c where c.table_owner = a.owner
    and c.table_name = a.object_name and a.object_type IN
    (:"SYS_B_11",:"SYS_B_12") and a.status = :"SYS_B_13" and c.owner
    like:"SYS_B_14"escape:"SYS_B_15" and c.synonym_name
    like:"SYS_B_16"escape:"SYS_B_17" union all select distinct b.owner,
    CONCAT(b.package_name, :"SYS_B_18" || b.object_name),
    min(b.position), max(b.overload) from sys.all_arguments b where
    b.package_name IS NOT NULL and b.owner
    like:"SYS_B_19"escape:"SYS_B_20" and b.package_name
    like:"SYS_B_21"escape:"SYS_B_22" group by b.owner,
    CONCAT(b.package_name, :"SYS_B_23" || b.object_name) union all select
    distinct c.owner, CONCAT(c.synonym_name, :"SYS_B_24" ||
    b.object_name), min(b.position), max(b.overload) from
    sys.all_arguments b, sys.all_synonyms c where c.table_owner = b.owner
    and c.table_name = b.package_name and b.package_name IS NOT NULL and
    c.owner like:"SYS_B_25"escape:"SYS_B_26" and c.synonym_name
    like:"SYS_B_27"escape:"SYS_B_28" group by c.owner,
    CONCAT(c.synonym_name, :"SYS_B_29" || b.object_name) union all select
    distinct c.owner, c.synonym_name, min(b.position), max(b.overload)
    from sys.all_arguments b, sys.all_synonyms c where c.owner = b.owner
    and c.table_owner=b.package_name and c.table_name=b.object_name and
    c.owner like:"SYS_B_30"escape:"SYS_B_31" and c.synonym_name
    like:"SYS_B_32"escape:"SYS_B_33" group by c.owner, c.synonym_name
    RATIONALE: SQL statement with SQL_ID "30rku9qg2y30j" was executed 12270
    times and had an average elapsed time of 0.036 seconds.
    RATIONALE: Waiting for event "cursor: pin S wait on X" in wait class
    "Concurrency" accounted for 7% of the database time spent in
    processing the SQL statement with SQL_ID "30rku9qg2y30j".
    RATIONALE: Average CPU used per execution was 0.036 seconds.
    RECOMMENDATION 2: SQL Tuning, 23% benefit (1550 seconds)
    ACTION: Run SQL Tuning Advisor on the SQL statement with SQL_ID
    "7yv1ba0c8y86t".
    RELEVANT OBJECT: SQL statement with SQL_ID 7yv1ba0c8y86t and
    PLAN_HASH 2684283631
    Select WSTJ_.ROWID, WSTJ_.*, WMVD_.*
    From THPR.STOJOU WSTJ_, THPR.SMVTD WMVD_ Where ((WMVD_.VCRTYP_0(+) =
    WSTJ_.VCRTYP_0) AND (WMVD_.VCRNUM_0(+) = WSTJ_.VCRNUM_0) AND
    (WMVD_.VCRLIN_0(+) = WSTJ_.VCRLIN_0))
    And WMVD_.CCE2_0 = :1 And WSTJ_.IPTDAT_0 <= :2 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_0",:"SYS_B_1") <> :3 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_2",:"SYS_B_3") <> :4 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_4",:"SYS_B_5") <> :5 And
    ((WSTJ_.TRSFAM_0 = :6) Or (WSTJ_.TRSFAM_0 = :7))
    Order by WSTJ_.STOFCY_0,WSTJ_.UPDCOD_0,WSTJ_.ITMREF_0,WSTJ_.IPTDAT_0
    Desc,WSTJ_.MVTSEQ_0,WSTJ_.MVTIND_0
    RATIONALE: SQL statement with SQL_ID "7yv1ba0c8y86t" was executed 47
    times and had an average elapsed time of 32 seconds.
    RATIONALE: Average CPU used per execution was 32 seconds.
    RECOMMENDATION 3: SQL Tuning, 5.8% benefit (390 seconds)
    ACTION: Run SQL Tuning Advisor on the SQL statement with SQL_ID
    "cbtd2nt52qn1c".
    RELEVANT OBJECT: SQL statement with SQL_ID cbtd2nt52qn1c and
    PLAN_HASH 2897530229
    Select DAE_.ROWID, DAE_.*, HAE_.*
    From THPR.GACCENTRYD DAE_, THPR.GACCENTRY HAE_ Where ((HAE_.TYP_0(+)
    = DAE_.TYP_0) AND (HAE_.NUM_0(+) = DAE_.NUM_0))
    And HAE_.CPY_0 = :1 And HAE_.ACCDAT_0 >= :2 And HAE_.ACCDAT_0 <= :3
    And DAE_.ACC_0 = :4 And HAE_.FCY_0 >= :5 And HAE_.FCY_0 <= :6
    Order by DAE_.BPR_0,DAE_.CUR_0,DAE_.ACC_0
    RATIONALE: SQL statement with SQL_ID "cbtd2nt52qn1c" was executed 12980
    times and had an average elapsed time of 0.03 seconds.
    RATIONALE: Average CPU used per execution was 0.029 seconds.
    RECOMMENDATION 4: SQL Tuning, 2.1% benefit (138 seconds)
    ACTION: Run SQL Tuning Advisor on the SQL statement with SQL_ID
    "33t7fszkr29gy".
    RELEVANT OBJECT: SQL statement with SQL_ID 33t7fszkr29gy and
    PLAN_HASH 2684283631
    Select WSTJ_.ROWID, WSTJ_.*, WMVD_.*
    From THPR.STOJOU WSTJ_, THPR.SMVTD WMVD_ Where ((WMVD_.VCRTYP_0(+) =
    WSTJ_.VCRTYP_0) AND (WMVD_.VCRNUM_0(+) = WSTJ_.VCRNUM_0) AND
    (WMVD_.VCRLIN_0(+) = WSTJ_.VCRLIN_0))
    And WMVD_.CCE2_0 = :1 And WSTJ_.IPTDAT_0 <= :2 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_0",:"SYS_B_1") <> :3 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_2",:"SYS_B_3") <> :4 And
    Substr(WMVD_.ITMDES1_0,:"SYS_B_4",:"SYS_B_5") <> :5 And
    (((WSTJ_.TRSFAM_0 = :6) Or (WSTJ_.TRSFAM_0 = :7)))
    Order by WSTJ_.STOFCY_0,WSTJ_.UPDCOD_0,WSTJ_.ITMREF_0,WSTJ_.IPTDAT_0
    Desc,WSTJ_.MVTSEQ_0,WSTJ_.MVTIND_0
    RATIONALE: SQL statement with SQL_ID "33t7fszkr29gy" was executed 1
    times and had an average elapsed time of 136 seconds.
    RATIONALE: Average CPU used per execution was 138 seconds.
    FINDING 3: 15% impact (1008 seconds)
    SQL statements with the same text were not shared because of cursor
    environment mismatch. This resulted in additional hard parses which were
    consuming significant database time.
    RECOMMENDATION 1: Application Analysis, 15% benefit (1008 seconds)
    ACTION: Look for top reason for cursor environment mismatch in
    V$SQL_SHARED_CURSOR.
    ADDITIONAL INFORMATION:
    Common causes of environment mismatch are session NLS settings, SQL
    trace settings and optimizer parameters.
    SYMPTOMS THAT LED TO THE FINDING:
    SYMPTOM: Hard parsing of SQL statements was consuming significant
    database time. (20% impact [1336 seconds])
    SYMPTOM: Contention for latches related to the shared pool was
    consuming significant database time. (2% impact [135
    seconds])
    INFO: Waits for "cursor: pin S wait on X" amounted to 1% of
    database time.
    SYMPTOM: Wait class "Concurrency" was consuming significant
    database time. (2.3% impact [154 seconds])
    FINDING 4: 8.5% impact (570 seconds)
    Wait class "User I/O" was consuming significant database time.
    NO RECOMMENDATIONS AVAILABLE
    ADDITIONAL INFORMATION:
    Waits for I/O to temporary tablespaces were not consuming significant
    database time.
    The throughput of the I/O subsystem was not significantly lower than
    expected.
    FINDING 5: 5.3% impact (355 seconds)
    The SGA was inadequately sized, causing additional I/O or hard parses.
    RECOMMENDATION 1: DB Configuration, 3.2% benefit (215 seconds)
    ACTION: Increase the size of the SGA by setting the parameter
    "sga_target" to 1740 M.
    ADDITIONAL INFORMATION:
    The value of parameter "sga_target" was "1392 M" during the analysis
    period.
    SYMPTOMS THAT LED TO THE FINDING:
    SYMPTOM: Hard parsing of SQL statements was consuming significant
    database time. (20% impact [1336 seconds])
    SYMPTOM: Contention for latches related to the shared pool was
    consuming significant database time. (2% impact [135
    seconds])
    INFO: Waits for "cursor: pin S wait on X" amounted to 1% of
    database time.
    SYMPTOM: Wait class "Concurrency" was consuming significant
    database time. (2.3% impact [154 seconds])
    SYMPTOM: Wait class "User I/O" was consuming significant database time.
    (8.5% impact [570 seconds])
    INFO: Waits for I/O to temporary tablespaces were not consuming
    significant database time.
    The throughput of the I/O subsystem was not significantly lower
    than expected.
    FINDING 6: 4.2% impact (281 seconds)
    Cursors were getting invalidated due to DDL operations. This resulted in
    additional hard parses which were consuming significant database time.
    RECOMMENDATION 1: Application Analysis, 4.2% benefit (281 seconds)
    ACTION: Investigate appropriateness of DDL operations.
    SYMPTOMS THAT LED TO THE FINDING:
    SYMPTOM: Hard parsing of SQL statements was consuming significant
    database time. (20% impact [1336 seconds])
    SYMPTOM: Contention for latches related to the shared pool was
    consuming significant database time. (2% impact [135
    seconds])
    INFO: Waits for "cursor: pin S wait on X" amounted to 1% of
    database time.
    SYMPTOM: Wait class "Concurrency" was consuming significant
    database time. (2.3% impact [154 seconds])
    FINDING 7: 4% impact (266 seconds)
    Waits on event "log file sync" while performing COMMIT and ROLLBACK operations
    were consuming significant database time.
    RECOMMENDATION 1: Host Configuration, 4% benefit (266 seconds)
    ACTION: Investigate the possibility of improving the performance of I/O
    to the online redo log files.
    RATIONALE: The average size of writes to the online redo log files was
    26 K and the average time per write was 2 milliseconds.
    SYMPTOMS THAT LED TO THE FINDING:
    SYMPTOM: Wait class "Commit" was consuming significant database time.
    (4% impact [266 seconds])
    FINDING 8: 2.9% impact (192 seconds)
    Soft parsing of SQL statements was consuming significant database time.
    RECOMMENDATION 1: Application Analysis, 2.9% benefit (192 seconds)
    ACTION: Investigate application logic to keep open the frequently used
    cursors. Note that cursors are closed by both cursor close calls and
    session disconnects.
    RECOMMENDATION 2: DB Configuration, 2.9% benefit (192 seconds)
    ACTION: Consider increasing the maximum number of open cursors a session
    can have by increasing the value of parameter "open_cursors".
    ACTION: Consider increasing the session cursor cache size by increasing
    the value of parameter "session_cached_cursors".
    RATIONALE: The value of parameter "open_cursors" was "800" during the
    analysis period.
    RATIONALE: The value of parameter "session_cached_cursors" was "20"
    during the analysis period.
    SYMPTOMS THAT LED TO THE FINDING:
    SYMPTOM: Contention for latches related to the shared pool was consuming
    significant database time. (2% impact [135 seconds])
    INFO: Waits for "cursor: pin S wait on X" amounted to 1% of database
    time.
    SYMPTOM: Wait class "Concurrency" was consuming significant database
    time. (2.3% impact [154 seconds])
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ADDITIONAL INFORMATION
    Wait class "Application" was not consuming significant database time.
    Wait class "Configuration" was not consuming significant database time.
    Wait class "Network" was not consuming significant database time.
    Session connect and disconnect calls were not consuming significant database
    time.
    The database's maintenance windows were active during 100% of the analysis
    period.
    The analysis of I/O performance is based on the default assumption that the
    average read time for one database block is 10000 micro-seconds.
    An explanation of the terminology used in this report is available when you
    run the report with the 'ALL' level of detail.

    user12023161 wrote:
    I have upgraded 10.2.0.3.0 to 10.2.0.5.0 and facing same issue. The database is slow in general after upgrade compared to 10.2.0.3.0.Try setting OPTIMIZER_FEATURE_ENABLE parameter to 10.2.0.3.
    Refer following link:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams142.htm

  • E52 slow running - freeze - automatic restart

    Hello
    I have since one month a E52. Since last week I notice some time slow running or even no response then I am using the phone. If I press then for long time the home button all open programs are shown but also some strange entries these are:
    -Main
    -ShareCommServer
    and others
    During the slow running phase is the signal strength zero. I don't know if the search process causes the problem or if it is caused by the same thing that causes the slow responding.
    With Y-Tasks I searched for the Main and ShareCommServer process but there is no such process.
    I tried also a complete reset (*#7370#) but after short time (and a few program installations) I had the same problem again
    So if anybody has any suggestion for solving the problem I would by very happy
    Best regards
    Stefan

    Try and do a hard format.
    the codes and write up taken from the link below
    /t5/Eseries-and-Communicators/E52-Hard-Reset-Does-any-key-combination-really-work/m-p/571682
    NOTE: In front of the hash key ( #) there is also a STAR key that people often miss and state that the code does not work. 1.. *#7780# - Restore factory settings - resets all the settings to the default ( you will not lose any data) Make sure you back up your data as you will lose all of it when you perform option 2 or 3 on this list. The default code for ALL operations listed here is 12345.
    2.*#7370# - Reformat your phone (out of the box, tho keep in mind that most newer nokia phones at least n series, e series and s60 based phones have udp - user data preservation so not ALL data may be lost. still it is a good idea to always do a back up of your stuff.)
    3. This you perform as a last resort. Nothing else is working.If the phone is not showing any activity, proceed with hard formatting , turn off your phone, hold the following buttons while pressing the power button. (the default code is 12345)
    3. hard reset - hold the following buttons * (star key), 3 (number button) and talk/green key. turn on the phone and do not release those buttons until you see the Nokia boot up screen. once you feel the phone power up you can let go off the power button while still holding all three buttons ( for Nokia 5800XM - use the following buttons to do a hard reset, /GREEN/RED/CAMERA keys pressed all at once on power up. this will only work on 5800's that have firmware version 20... and up. ) For Nokia N97 (unofficial version but works) is SHIFT /SPACE BAR / BACKSPACE while holding the power button. Again do not let go until you see the handshake screen. If these codes are not working the only thing for you to do is contact your Nokia Care Center/Service for assistance.
    regards
    If you like my post kindly hit the Green Star Button on the left.
    Nokia Phones owned: 3310, 8310, 7650, 3650,7210,6230, 6630, 6600,6100,6610, 6610i, 3230, 8800, 5700XM, E52 (only Nokia phones)

  • Curve 8520. Small clock icon appearing and very slow running

    My curve is operating really slowly and when I try to open or send a text or open a mail, I get a very small clock icon appear. After about 20 secs, the text or mail opens. Not able to send any e mails either. Thought too many stored mails may be the problem but device won't now allow me to delete. Battery also running low after just a few hours,even after fully charging.

    1. Do a reboot on the device:  With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot.
    2. To prevent freezing or lagging/slow response on any BlackBerry, the most important practice you can adopt is to be sure to CLOSE applications when you are finished using them.
    If you just hit the red "end call" key to go back to the home screen the application actually stays open and running in the background. If you do this repeatedly you will have lots of apps open and consequently your memory will get used up. Lack of memory is the biggest reason your BlackBerry slows to a crawl or locks up. If you get into the habit of actually using the menu key to close the applications this will at least slow down this memory-clogging process. You still may have to do a battery pull or use the "Quickpull" app once in a while when things get slow.
    To check what applications are running on your device in the background, press the Menu key then choose Switch Applications. You will see the icons of each application there.
    So now, check your applications running in the background. There are commonly four or five applications that will always be running (Messages, Call Logs/Phone, BlackBerry Messenger, Homescreen, and the Browser; there are other third party applications such as BeeJive, and BlackBerry Alerts which will also run in the background which you cannot close if you want them to operate). Make certain that the browser is NOT on an active webpage (open the browser and choose Menu > Close). Close any other applications that do not need to be running (the camera or a game you were playing or Google Maps).

  • Advice  on long running queries

    Hi all
    I am a junior dba and facing problem of log runninig queries. Can anyone help and let me know how to resolve the long running queries. I mean what should be the approach to findout out the problem.
    Please guide me.
    thanx
    Ajay

    >
    OK, so what about your buddy Jonathan Lewis who
    includes THREE hyperlinks in his sig line?
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    Author: Cost Based Oracle: Fundamentals
    http://www.jlcomp.demon.co.uk/cbo_book/ind_book.html
    The Co-operative Oracle Users' FAQ
    http://www.jlcomp.demon.co.uk/faq/ind_faq.html
    Tsk, tsk, the naughty little man is telling lies again.
    There's a search feature on the Oracle forum - it let's you search by user and ask for key words. I've searched against my identify looking for "ind_faq", and then for "cbo_book". It doesn't return any posts with that sig.
    And here's another thought: your comment about me being a buddy of Sybrand (who you were trying to claim did not exist just a few hours ago) reminded me that I have had reasons to criticise him in the recent past - for example Re: to_char and performance - and he managed to take it without descending into a hissy fit.
    And finally - a little logical error on your part. The fact that I know that Sybrand Bakker exists does not mean that he is a buddy of mine or that I am a buddy of his. After all, I know that you exist.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • Slow running mini mac

    My mini mac is very slow running after I had th logic board replaced, any ideas on how to fix this issue?

    Hello, see how many of these you can answer...
    See if the Disk is issuing any S.M.A.R.T errors in Disk Utility...
    http://support.apple.com/kb/PH7029
    Open Activity Monitor in Applications>Utilities, select All Processes & sort on CPU%, any indications there?
    How much RAM & free Disk space do you have also, click on the Memory & Disk Usage Tabs.
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    In the Memory tab of Activity Monitor, are there a lot of Pageouts?
    https://discussions.apple.com/servlet/JiveServlet/showImage/2-18666790-125104/AM Pageouts.jpg

  • Slow running MacBook Pro Early 2011

    Am I right in thinking the only way to sort this out from the report below is to get a new hard disk? How do I go about getting Yosemite copied over onto a new drive? Does anyone have any recommendations for reasonably priced SSD's that would work in my machine? Or would it not be worth getting an SSD? Thanks in advance for any help/answers!
    Problem description:
    Slow running mac
    EtreCheck version: 2.1.8 (121)
    Report generated 9 April 2015 20:45:18 BST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,2
        1 2 GHz Intel Core i7 CPU: 4-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 536
    Video Information: ℹ️
        Intel HD Graphics 3000
            Color LCD 1440 x 900
        AMD Radeon HD 6490M - VRAM: 256 MB
    System Software: ℹ️
        OS X 10.10.3 (14D131) - Time since boot: 0:6:5
    Disk Information: ℹ️
        TOSHIBA MK5065GSXF disk0 : (500.11 GB)
        S.M.A.R.T. Status: Failing
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 498.88 GB (434.46 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 499.25 GB Online
        HL-DT-ST DVDRW  GS31N 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Launch Agents: ℹ️
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
    User Launch Agents: ℹ️
        [failed]    com.akamai.single-user-client.plist [Click for support] [Click for details]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
        [running]    homebrew.mxcl.mysql.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
        Default Browser: Version: 600 - SDK 10.10
        QuickTime Plugin: Version: 7.7.3
    Safari Extensions: ℹ️
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        Akamai NetSession Preferences  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             6%    WindowServer
             1%    launchd
             0%    fontd
             0%    AppleSpell
             0%    2BUA8C4S2C.com.agilebits.onepassword4-helper
    Top Processes by Memory: ℹ️
        464 MB    mysqld
        77 MB    ocspd
        73 MB    Dropbox
        60 MB    WindowServer
        43 MB    softwareupdated
    Virtual Memory Information: ℹ️
        1.11 GB    Free RAM
        1.62 GB    Active RAM
        537 MB    Inactive RAM
        1.02 GB    Wired RAM
        963 MB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Apr 9, 2015, 08:38:11 PM    Self test - passed

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Issues when running queries while the cube is being loaded

    What kind of issues can we face if we run queries on a cube when the cube is in the middle of being loaded? Will it show inaccurate date? Will it cause the query to be slow?

    Hi,
    -Until the load is finished and with status OK, you won't be able to see the loaded data (that's the standard behaviour, it can be modified).
    -You can have performance issues, but it will depend on the data volume, the HW of the servers, etc.
    That's why it´s recomended to load data when nobody is using the system, also you should notice that the performance issue is not only in BW, R/3 will also notice a performance decrease because you are making the extraction from there.
    Hope this helps.
    Regards,
    Diego

  • Slow video playback after reinstalling Geforce2 MX  card

    Ok, reinstalled (took out the 9200 card) my Geforce2Mx card and now everything is in super slow motion - video, scrolling, typing, opening and closing of apps, pull down menus, loading of web pages - everything. It's like being back on an old SE30 and now even that seems fast to what is happening now. What did I do wrong? Tried rebooting a few times and resetting pram with no better results.
    G4 Mac OS X (10.3.9)
    Posts: 536
    From: Vancouver, Canada
    Registered: Dec 30, 2005
    Re: Slow video playback after upgrading to ati 9200 card
    Posted: Apr 10, 2006 11:56 PM
    in response to: G J
    Press the button near the battery on your logic board, it will reset the PMU, which might help.
    Gigabit Ethernet G4 upgraded 1.2Ghz, 120GB HD, 10GB HD, 1GB RAM Mac OS X (10.4.6) ibook G4 1.42Ghz, 80GB HD, 786 MB RAM, 1GB iPod Shuffle
    Tried that also with no results. Also repaired permissions. What could have happened to the machine to do that?
    G4 Mac OS X (10.3.9)

    Installed the modified Radeon ATI 9600 Pro for G5 Edition card and I still have the same slow video playback results. However when I boot up from another internal hard drive I do not have the video problems. Everything works just fine. Both of my hard drives had no video problems before screwing around with the ATI cards and now the one still has the problems with the video playback. This one also has Classic on it and Classic also runs slow. BTW I don't know if this has anything to do with it but when I ran a search result for "ATI" no files are installed on that 2nd hard drive which is playing video and loading pages with no problems. Would trashing all those ATI files on the slow drive do anything to help? Or is this just a coincidence?

  • How do I fix aLaCie Backup Drive that runs constantly after Maverick upgrade

    LaCie backup drive for time machine runs constaantly after Maverick upgrade.  This is using resources and slows the processor

    After installing Mavericks on my one year old iMac (loaded) Time Machine failed (Pegasus Promise Thunderbolt 3TB).  I tried unmounting it, didn't work.  Rebooted: Time Machine failed again [Time Machine couldn’t complete the backup to “Time Machine”. Unable to complete backup. An error occurred while creating the backup folder.] was the only message. Had to reboot to get Pegusus accessible again.  Tried re-intalling Maverick (old Microsoft thing... reintall the OS).  Didin't do anything for Time Machine, same failure.  Booted into safe mode: nothing, same probelm.  Repaired permissions: no joy there either.  So, now have no Time Machine backups at all. And Time Machine won't work with the Pegasus. [same error message after 30 min or so every time].  ordinary file saves work fine though.
    Ideas please?

  • Run queries against system tables for oracle BPEL processes

    I want to run queries against system tables for oracle BPEL processes. It is becoming very difficult for me to us EM as it is very slow,
    and not all the time, it is sufficient for our needs.
    We are doing load testing and we want find out info like how many requests came in and how many faulted and what time is taken by each request...
    So do any of you have the query that I can use and tables that I need to go against?

    Use the BPEL hydration database table "cube_instance".
    There should be plenty of example in the forum regarding this table.

  • Premiere Elements 7 issues with slow playback, also after exporting

    Everyone,
    I recently bought Premiere Elements 7 and I am running it on a sufficient computer (Dual core 2.4Ghz, 4 gigs of ram, 8800GTX gfx card).
    This all runs on Windows XP, but when I put the video files in Elements. Premiere just plays back slowly.
    Everything seems to move in slow motion.
    Also after exporting, the video is in slow motion.
    The audio on the other hand works fine.
    The video files are .MP4 coming from a Sanyo Xacti HD1000 camcorder.

    Thanks for your reply Grisetti, the funny thing is actually I also tried to work with the files on an Octo core which also didn't work.
    Nevertheless, because that after exporting, so basically rendering, it is also out of sync and playing in slow motion. This is weird because no matter how fast or slow the computer, after rendering it shouldn't matter in the result.
    The files are not AVCHD, they are already stored as MP4 files directly on the memorycard of the camera, and can just be copied and pasted onto the computer using a card reader.

Maybe you are looking for

  • Contribute on more than one PC/Laptop

    I have C4 on my PC (main one) and on an old laptop. I need to replace the laptop. Am I able to instal C4 onto the new laptop after deleting it from the old one? The new laptop will be running Visa Home Basic - any problems I should know about?

  • [OVM 3.0.1] Visibly attached FC storage not being recognized by VM manager

    This is my first real trek into Oracle VM so please be gentle. I have an SCST based FC target that I can see is visibly attached to my OVS server. It's picked up as /dev/sdc but not matter how many times I reboot the OVS server, I can't get OVM to ev

  • Guidance - import exchange rate from a webpage

    Hello everyone, I am now starting a new project and one of the functionalities I wanted to implement is to obtain from a website the exchange rate from one specific currency. Based on the date and currency I inform in a field, this script, if possibl

  • Spell check doesn't work on shared documents

    We have four computers (Mac) running CS6 (multiple licenses) and sharing documents via a server. Beginning with CS3, we were not able to spell check a document multiple times. Now, with CS6, three computers cannot spell check ANY shared documents. On

  • Link a DLL with Step.Module

    I am trying to create a sequence file from a C# 2005 code using TestStand 4.0 The flow of control is (without going into the coding details) : - create a step - create a sequence - add step to the sequence - add sequence to a sequenceFile - save the