DB link performance.

HI Experts
One of our developers is facing performance issue on one query using dblinks.
When we run the query in remote db it is taking 4-5 mins.
When we execute the query from his local db using db links it is never ending.
Looking at this initially we are suspecting to be network issue.
we did some testing and found
Scenario 1
When we execute the query from his local db which is using some of his local tables and some remote tables it never ends.
We did session tracing and found that it waiting on
WAIT #1: nam='SQL*Net message from dblink' ela= 43367 driver id=675562835 #bytes=1 p3=0 obj#=-1 tim=10635854911875
WAIT #1: nam='SQL*Net message to dblink' ela= 1 driver id=675562835 #bytes=1 p3=0 obj#=-1 tim=10635854911949
WAIT #1: nam='SQL*Net message from dblink' ela= 42156 driver id=675562835 #bytes=1 p3=0 obj#=-1 tim=10635854954117
WAIT #1: nam='SQL*Net message to dblink' ela= 0 driver id=675562835 #bytes=1 p3=0 obj#=-1 tim=10635854954193
Scenario 2
When we execute the query from his local db using all the tables in the remote db using dblinks it is executing in 6-7 mins.
Problem is occuring when we use some of the tables in his local schema and some table in his remote db schema .
Tables that exist in his local schema are very small.
At this stage we are not sure whether this could be due to network or some other issue.
Any Ideas?
Thanks in Advance.
Mehtab

You didn't post a 4 digit database version local 10.2.0.3 remote is 9.2.0.7
- You didn't post a version
- You didn't post the actual statement
SELECT /*+DRIVING_SITE( )*/ DISTINCT dsnh.notif_nr
,dsnh.sales_org_id
,dsnh.sales_org_name
,dsnh.fiscal_year
,dsnh.fiscal_period
,dsnh.fiscal_week_period
,dsnh.notif_type
,dsnh.notif_type_desc
,dsnh.repair_scenario
,dsnh.product_class_code
,dsnh.shipto_partner_nr
,dsnh.sales_channel
,dsnh.channel_type233 characters
,dsnh.header_warranty_code
,dsnh.depot_partner_name
,dsnh.shipto_partner_name
FROM dn_service_notification_hdr@dblink dsnh,
sap_customer@dblink sc,
sys_statuses@dblink systbl,
external_internal_tbl@dblink exttbl
WHERE dsnh.shipto_partner_nr = sc.sap_cust_no
AND dsnh.notif_nr = systbl.doc_nr
AND systbl.sys_status = exttbl.ext_status
AND UPPER(dsnh.notif_type)
IN (SELECT UPPER(notif_type)
FROM opc_notif_type_1
WHERE report_name = 'NEW REPAIR VOLUME'
AND service_description = 'Carry In'
AND UPPER(dsnh.notif_type)||' - '||UPPER(exttbl.ext_status)
NOT IN (SELECT UPPER(notif_type)||' - '||UPPER(cancel_flag_value)
FROM opc_notif_type_1
WHERE report_name = 'NEW REPAIR VOLUME'
AND service_description = 'Carry In'
AND dsnh.repair_scenario IN (SELECT repair_scenario
FROM opc_repair_scenario_1
WHERE report_name = 'NEW REPAIR VOLUME'
AND service_description = 'Carry In'
AND UPPER(sc.sales_district) IN (SELECT UPPER(sales_district)
FROM opc_sales_district_1
WHERE report_name = 'NEW REPAIR VOLUME'
AND service_description = 'Carry In'
AND dsnh.sales_org_id IN (SELECT sales_org_id
FROM opc_sales_org_1 )
AND dsnh.header_warranty_code <>'OO'
AND TO_DATE(TO_CHAR(dsnh.notification_creation_dt,'MM/DD/RRRR'),'MM/DD/RRRR')
BETWEEN TO_DATE('03/02/2008','MM/DD/RRRR')
AND TO_DATE('03/02/2008','MM/DD/RRRR')
AND UPPER(dsnh.product_class_code) <> UPPER('3P')
- You didn't post an EXPLAIN PLAN
SQL> /
PLAN_TABLE_OUTPUT
Plan hash value: 1508264907
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | Inst |IN-OUT|
| 0 | SELECT STATEMENT | | 1 | 750 | 354K (1)| 01:10:54 | | |
| 1 | HASH UNIQUE | | 1 | 750 | 354K (1)| 01:10:54 | | |
|* 2 | FILTER | | | | | | | |
|* 3 | HASH JOIN | | 1 | 714 | 351K (1)| 01:10:24 | | |
| 4 | MERGE JOIN CARTESIAN | | 1 | 95 | 12 (0)| 00:00:01 | | |
| 5 | MERGE JOIN CARTESIAN | | 1 | 64 | 9 (0)| 00:00:01 | | |
PLAN_TABLE_OUTPUT
| 6 | MERGE JOIN CARTESIAN| | 1 | 60 | 6 (0)| 00:00:01 | | |
|* 7 | TABLE ACCESS FULL | OPC_REPAIR_SCENARIO_1 | 1 | 27 | 3 (0)| 00:00:01 | | |
| 8 | BUFFER SORT | | 1 | 33 | 3 (0)| 00:00:01 | | |
|* 9 | TABLE ACCESS FULL | OPC_NOTIF_TYPE_1 | 1 | 33 | 3 (0)| 00:00:01 | | |
| 10 | BUFFER SORT | | 2 | 8 | 6 (0)| 00:00:01 | | |
| 11 | TABLE ACCESS FULL | OPC_SALES_ORG_1 | 2 | 8 | 3 (0)| 00:00:01 | | |
| 12 | BUFFER SORT | | 2 | 62 | 9 (0)| 00:00:01 | | |
|* 13 | TABLE ACCESS FULL | OPC_SALES_DISTRICT_1 | 2 | 62 | 3 (0)| 00:00:01 | | |
|* 14 | FILTER | | 2273 | 1374K| 351K (1)| 01:10:24 | | |
| 15 | REMOTE | | | | | | ASRDMP | R->S |
|* 16 | TABLE ACCESS FULL | OPC_NOTIF_TYPE_1 | 1 | 39 | 3 (0)| 00:00:01 | | |
PLAN_TABLE_OUTPUT
Predicate Information (identified by operation id):
2 - filter( NOT EXISTS (SELECT /*+ */ 0 FROM "OPC_NOTIF_TYPE_1" "OPC_NOTIF_TYPE_1" WHERE
"SERVICE_DESCRIPTION"='Carry In' AND "REPORT_NAME"='NEW REPAIR VOLUME' AND LNNVL(UPPER(:B1)||' -
'||UPPER(:B2)<>UPPER("NOTIF_TYPE")||' - '||UPPER("CANCEL_FLAG_VALUE"))))
3 - access(UPPER("DSNH"."NOTIF_TYPE")=UPPER("NOTIF_TYPE") AND
"REPAIR_SCENARIO"=TO_NUMBER("DSNH"."REPAIR_SCENARIO") AND "SALES_ORG_ID"=TO_NUMBER("DSNH"."SALES_ORG_ID")
AND UPPER("SC"."SALES_DISTRICT")=UPPER("SALES_DISTRICT"))
PLAN_TABLE_OUTPUT
7 - filter("REPORT_NAME"='NEW REPAIR VOLUME' AND "SERVICE_DESCRIPTION"='Carry In')
9 - filter("SERVICE_DESCRIPTION"='Carry In' AND "REPORT_NAME"='NEW REPAIR VOLUME')
13 - filter("SERVICE_DESCRIPTION"='Carry In' AND "REPORT_NAME"='NEW REPAIR VOLUME')
14 - filter(TO_DATE(TO_CHAR(INTERNAL_FUNCTION("DSNH"."NOTIFICATION_CREATION_DT"),'MM/DD/RRRR'),'MM/DD/RRR
R')<=TO_DATE('2008-03-02 00:00:00', 'yyyy-mm-dd hh24:mi:ss') AND
TO_DATE(TO_CHAR(INTERNAL_FUNCTION("DSNH"."NOTIFICATION_CREATION_DT"),'MM/DD/RRRR'),'MM/DD/RRRR')>=TO_DATE('
2008-03-02 00:00:00', 'yyyy-mm-dd hh24:mi:ss'))
16 - filter("SERVICE_DESCRIPTION"='Carry In' AND "REPORT_NAME"='NEW REPAIR VOLUME' AND
LNNVL(UPPER(:B1)||' - '||UPPER(:B2)<>UPPER("NOTIF_TYPE")||' - '||UPPER("CANCEL_FLAG_VALUE")))
Remote SQL Information (identified by operation id):
PLAN_TABLE_OUTPUT
15 - SELECT "A1"."NOTIF_NR","A1"."SALES_ORG_ID","A1"."SALES_ORG_NAME","A1"."FISCAL_YEAR","A1"."FISCAL_PER
IOD","A1"."FISCAL_WEEK_PERIOD","A1"."NOTIF_TYPE","A1"."NOTIF_TYPE_DESC","A1"."REPAIR_SCENARIO","A1"."PRODUC
T_CLASS_CODE","A1"."SHIPTO_PARTNER_NR","A1"."SALES_CHANNEL","A1"."CHANNEL_TYPE","A1"."HEADER_WARRANTY_CODE"
,"A1"."DEPOT_PARTNER_NAME","A1"."SHIPTO_PARTNER_NAME","A1"."SHIPTO_PARTNER_NR","A1"."NOTIF_NR","A1"."NOTIF_
TYPE","A1"."NOTIF_TYPE","A1"."REPAIR_SCENARIO","A1"."SALES_ORG_ID","A1"."HEADER_WARRANTY_CODE","A1"."NOTIFI
CATION_CREATION_DT","A1"."PRODUCT_CLASS_CODE","A2"."SAP_CUST_NO","A2"."SALES_DISTRICT","A3"."DOC_NR","A3"."
SYS_STATUS","A4"."EXT_STATUS","A4"."EXT_STATUS" FROM "DN_SERVICE_NOTIFICATION_HDR" "A1","SAP_CUSTOMER"
"A2","SYS_STATUSES" "A3","EXTERNAL_INTERNAL_TBL" "A4" WHERE "A3"."SYS_STATUS"="A4"."EXT_STATUS" AND
"A1"."NOTIF_NR"="A3"."DOC_NR" AND "A1"."SHIPTO_PARTNER_NR"="A2"."SAP_CUST_NO" AND
PLAN_TABLE_OUTPUT
UPPER("A1"."PRODUCT_CLASS_CODE")<>'3P' AND "A1"."HEADER_WARRANTY_CODE"<>'OO' (accessing 'ASRDMP' )
- you did post only a very small section of the wait analysis.

Similar Messages

  • How to improve database link performance?

    Hello all,
    We use db links to do DML operations on remote databases. For OLTP applications we are facing performance problems for transactions dependent on data on remote database.
    For legal and business reasons we cannot state all the data locally.
    Could anybody suggest how to improve database links performance or suggest methods/procedures/techniques to enhance speed of OLTP applications going against remote databases ?
    Thanks
    Sky

    AQ is as reliable as Oracle-- the guarantees about delivery of queued messages are the same as the guarantees about committed transactions (i.e. ACID). AQ is designed for asynchronous operation, though. If you are batching transactions, it sounds like you are already doing some sort of asynchronous operations-- I've generally found AQ a lot easier to administer & maintain than rolling your own batching system.
    If you want to tune the Oracle side of things, you'll need to explain more about the system(s) involved here. Architecture, data flow, operations that involve the dblink, etc. If you're not comfortable posting that sort of information to a public forum, feel free to send me mail directly [email protected]
    As an aside, I'm interested in how you can legally pull data from the remote system to display to your users but that you can't legally cache that data in your system via replication. Sounds like an odd constraint.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • DB-Link Performance Issues

    Hello,
    Does anyone know of any performance issues with regards to db-links? If I execute queries right on the database, they're pretty fast. When I execute them from the other server using a db-link, some queries are slow and some aren't. I can't pin-point where the problem is. I use TOAD to execute my queries on Oracle 7.
    Thank you very much.

    Hi
    When you execute statement that use tables from only one site the statement is executed on that site and you receive result. In other case the statement is executed in one site (usualy on the statement site). There are rules for optimizing distributed queries (See Oracle7 Server Tuning).
    Regards
    null

  • Local (IPC) db link vs local (TCP) db link - performance test conclusion

    Hi,
    I've done some test on AIX machine 9.2.0.8 EE DB .
    Was expecting performance improvement but observed almost no difference :
    IPC
    *** SESSION ID:(11.28) 2010-03-05 11:30:05.385
    alter session set events '10046 trace name context forever, level 12'
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        1      0.00       0.00          0          0          0           0
    Misses in library cache during parse: 0
    Optimizer goal: CHOOSE
    Parsing user id: 2568
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1       10.27         10.27
      SQL*Net message to dblink                       3        0.00          0.00
      SQL*Net message from dblink                     3        0.00          0.00
    create table test1 as select * from adresy@WORLD
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          1           0
    Execute      1    169.78     169.43          0       3038       3499    17835543
    Fetch        0      0.00       0.00          0          0          0           0
    total        2    169.78     169.44          0       3038       3500    17835543
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 2568
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      control file sequential read                    4        0.00          0.00
      SQL*Net message to dblink                     547        0.00          0.00
      SQL*Net message from dblink                   547        0.00          0.11
      SQL*Net more data from dblink              529041        0.02          6.96
      direct path write                               2        0.00          0.00
      log file sync                                   2        0.00          0.00
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1      137.19        137.19
    TCP
    alter session set events '10046 trace name context forever, level 12'
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        1      0.00       0.00          0          0          0           0
    Misses in library cache during parse: 0
    Misses in library cache during execute: 1
    Optimizer goal: CHOOSE
    Parsing user id: 2568
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1        8.03          8.03
      SQL*Net message to dblink                       3        0.00          0.00
      SQL*Net message from dblink                     3        0.00          0.00
    create table test1 as select * from adresy@WORLD
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.01       0.00          0          0          1           0
    Execute      1    171.05     170.39          0       3046       3499    17835543
    Fetch        0      0.00       0.00          0          0          0           0
    total        2    171.06     170.40          0       3046       3500    17835543
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 2568
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      control file sequential read                    4        0.00          0.00
      SQL*Net message to dblink                     547        0.00          0.00
      SQL*Net message from dblink                   547        0.00          0.13
      SQL*Net more data from dblink              529041        0.01          5.79
      direct path write                               2        0.00          0.00
      log file sync                                   2        0.00          0.00
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1      166.90        166.90
    ********************************************************************************Any ideas what can be improved ?
    I've obserwer little less CPU utilization when IPC was used and no l0 (aix loopback interface) usage.
    What thing which bothers me is LOCAL=NO when using dblink based on such tnsnames.ora entry:
    PROD1L =
    (DESCRIPTION =
      (ADDRESS_LIST =
       (ADDRESS = (PROTOCOL = IPC)(key=XXXTEST))
      (CONNECT_DATA =
       (SERVICE_NAME = PROD1)
    )

    Hi,
    I've done some test on AIX machine 9.2.0.8 EE DB .
    Was expecting performance improvement but observed almost no difference :
    IPC
    *** SESSION ID:(11.28) 2010-03-05 11:30:05.385
    alter session set events '10046 trace name context forever, level 12'
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        1      0.00       0.00          0          0          0           0
    Misses in library cache during parse: 0
    Optimizer goal: CHOOSE
    Parsing user id: 2568
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1       10.27         10.27
      SQL*Net message to dblink                       3        0.00          0.00
      SQL*Net message from dblink                     3        0.00          0.00
    create table test1 as select * from adresy@WORLD
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          1           0
    Execute      1    169.78     169.43          0       3038       3499    17835543
    Fetch        0      0.00       0.00          0          0          0           0
    total        2    169.78     169.44          0       3038       3500    17835543
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 2568
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      control file sequential read                    4        0.00          0.00
      SQL*Net message to dblink                     547        0.00          0.00
      SQL*Net message from dblink                   547        0.00          0.11
      SQL*Net more data from dblink              529041        0.02          6.96
      direct path write                               2        0.00          0.00
      log file sync                                   2        0.00          0.00
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1      137.19        137.19
    TCP
    alter session set events '10046 trace name context forever, level 12'
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        1      0.00       0.00          0          0          0           0
    Misses in library cache during parse: 0
    Misses in library cache during execute: 1
    Optimizer goal: CHOOSE
    Parsing user id: 2568
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1        8.03          8.03
      SQL*Net message to dblink                       3        0.00          0.00
      SQL*Net message from dblink                     3        0.00          0.00
    create table test1 as select * from adresy@WORLD
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.01       0.00          0          0          1           0
    Execute      1    171.05     170.39          0       3046       3499    17835543
    Fetch        0      0.00       0.00          0          0          0           0
    total        2    171.06     170.40          0       3046       3500    17835543
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 2568
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      control file sequential read                    4        0.00          0.00
      SQL*Net message to dblink                     547        0.00          0.00
      SQL*Net message from dblink                   547        0.00          0.13
      SQL*Net more data from dblink              529041        0.01          5.79
      direct path write                               2        0.00          0.00
      log file sync                                   2        0.00          0.00
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1      166.90        166.90
    ********************************************************************************Any ideas what can be improved ?
    I've obserwer little less CPU utilization when IPC was used and no l0 (aix loopback interface) usage.
    What thing which bothers me is LOCAL=NO when using dblink based on such tnsnames.ora entry:
    PROD1L =
    (DESCRIPTION =
      (ADDRESS_LIST =
       (ADDRESS = (PROTOCOL = IPC)(key=XXXTEST))
      (CONNECT_DATA =
       (SERVICE_NAME = PROD1)
    )

  • WRT610N STORAGE LINK PERFORMANCE

    hi,
    i wonder 610n data transfer  performance by mbyte/s with connected Ntfs HDs.
    pls share your experiences, how much mb read/write speed ,did u see with wireless connection between usb hd on router-notebook(with N wireless). 
    thnx

    Wireless computer to storage will work on average of 2-3 Mbps/sec.

  • Regarding performance tuning

    hi,
    i have developed a report program.its taking too much time to fetch the records.so what steps i have to consider to improve the performance. urgent plz.

    Hi,
    Check this links
    Performance tuning for Data Selection Statement & Others
    http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm
    http://www.sapdevelopment.co.uk/perform/performhome.htm
    http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_PerformanceAnalysisTools.asp
    http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_Introduction.asp
    1. Debugger
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc
    http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm
    2. Run Time Analyser
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/617cafe68c11d2b2ab080009b43351/content.htm
    3. SQL trace
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/801f7c454211d189710000e8322d00/content.htm
    6. Coverage Analyser
    http://help.sap.com/saphelp_47x200/helpdata/en/c7/af9a79061a11d4b3d4080009b43351/content.htm
    7. Runtime Monitor
    http://help.sap.com/saphelp_47x200/helpdata/en/b5/fa121cc15911d5993d00508b6b8b11/content.htm
    8. Memory Inspector
    http://help.sap.com/saphelp_47x200/helpdata/en/a2/e5fc84cc87964cb2c29f584152d74e/content.htm
    http://sap.genieholdings.com/abap/performance.htm
    http://www.dbis.ethz.ch/research/publications/19.pdf
    Reward Points if it is Useful.
    Thanks,
    Manjunath MS

  • Link a report

    Hi
       What is the procedure of link from one report to another report in webi.Is Hyper link perform same action.Can any body explain.
    Thanks

    Hi,
    We can use "Hyperlinks", to link up Reports.
    We have two opts to accomplish the same:
    1. using OpenDocument() syntax.
    2. By Right-clicking on report and establishing link to another report. (BO XI 3.x)
    Pls have a look on below thread for additional info...,
    Linking 2 web I reports
    Hope it should clarifies all doubts.
    Thank You!!

  • Premiere-After Effects Dynamic Link render times vary wildly after minimal composition changes

    Here is something strange that happens a lot to me.
    I'll have a sequence in Premiere Pro CC 2014 that is entirely or largely an AE comp that I have dynamically linked.  I'll use a specific case as an example, but it's happened with various projects.
    In this most recent one the visual (but not audio) of my Premiere sequence is one AE dynamically linked comp of about 90 seconds.  It's more or less a fancy slide show- some photos with moves, some text, motion blur, masking, maybe a few filters.  Fairly basic stuff as far as After Effects goes.
    Anyhow, I like to render the sequence in Premiere and then watch it down with music to see if the timing works and make adjustments from there.  That's my usual workflow.  The strange thing is that when I render, the render times can vary tremendously.  With this particular project, one time rendered in about 2 minutes in Premiere.  I watched it down and I noticed a spelling error, which I fixed.  Just changing one word of text in AE.  This, of course, causes the entire linked comp to need to be rendered again in Premiere.  This time when I go to render, it took about 20 minutes and it only got about  70% of the way through.  A huge difference and all I changed was a couple letters, which shouldn't impact how intensive of a render is needed.  What I usually do is cancel the render when it takes that long, then quit Premiere, reopen, and render right away after I open.  When I do this, after the application restart, the sequence will then render in the faster approximately 2 minute duration.  Almost invariably this is true.
    So I end up quitting and restarting Premiere a lot to get the faster render times.  But of course that's annoying.
    What is going on here?
    I know that some might have critiques of the workflow and watching in Premiere and the fact that one letter change forces the entire sequence re-render.  I know I could break it up and there are ways around that.  But I am not interested in such critiques.  My work flow actually is quite efficient when the 2 minute render time happens.  Just not when it takes 10x more than that for the same thing.  Why are there these huge render time swings?
    My guess is that some cache gets filled up, so when the application is just started, and the cache is empty, the render works much better.  But I really do not know.
    Help please.

    There is currently a bug that causes Dynamic Link performance to be poor when the main After Effects application is running. (The underlying issue is that the main After Effects application is sending many more messages during Dynamic Link than it needs to.)
    The easy workaround is to quit the main After Effects application when using Premiere Pro to process a dynamically linked After Effects composition.
    This bug is fixed in an update due to be released in less than two weeks.

  • R12 Performance Tuning...

    Are there any docs or notes that one can to follow for EBS R12 performance tuning ?
    Regards,
    Rupdipt

    Hi,
    Please refer to the following links:
    Performance Tuning the Apps Database Layer
    http://blogs.oracle.com/schan/newsItems/departments/release12/2007/05/17#a1562
    Understanding JDBC Connections From the eBusiness Middle Tier
    http://blogs.oracle.com/schan/newsItems/departments/release12/2007/09/20#a2051
    Performance Tuning for the E-Business Suite
    http://blogs.oracle.com/schan/newsItems/departments/release12/2007/12/11#a2297
    The following notes/links provide guidelines for setting up JVMs (Jserv groups/OC4J instances) for online applications in Apps 11i and R12:
    Note: 362851.1 - Guidelines to setup the JVM in Apps Ebusiness Suite 11i and R12
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=362851.1
    Note: :462550.1 - Generate JVM heap dump in E-Business suite 11i and R12
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=462550.1
    Latest JVM Tuning Recommendations for Apps 11i
    http://blogs.oracle.com/schan/2007/03/01
    Tuning JVMs with Apps 11i
    http://blogs.oracle.com/schan/2007/02/16#a1230
    Configuring Middle-Tier JVMs for Applications 11i
    http://blogs.oracle.com/schan/2006/08/01#a494
    For tuning other application components (i.e. CM, initialization parameters, top SQL statements, application tier, ..etc), the following note should be helpful:
    Note: 169935.1 - Troubleshooting Oracle Applications Performance Issues
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=169935.1
    Note: 244040.1 - Oracle E-Business Suite Recommended Performance Patches
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=244040.1
    Note: 744143.1 - Tuning performance on eBusiness suite
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=744143.1
    Regards,
    Hussein

  • Performance delta between Viewer & Plus?

    All;
    Relative to the middle tier, & in terms of the effect on CPU/memory etc. can anyone articulate which of the two methods effect the app/Web server more than the other?
    I've been successfully deploying Load Runner scripts against & through "Viewer" however, not through "Plus" where playback is failing (presumably sessions, applet & a host of other parameters I need to look at).
    The above stated, & assuming we cannot get "Plus" scripts to playback effectively, I'd like to assure that it's possible to load the middle tier as effectively via "Viewer" & definitively state that there's either no, minimal or extradionary considerations to be aware of between the two - again, as they effect the app & Web servers.
    Thanks very much.

    In addition, to the already great information provided:
    You can get a good overall "picture" with:
    Capacity Planning Guide 10g (9.0.4) (mostly still applies to 10.1)
    http://www.oracle.com/technology/products/discoverer/index.html
    Capacity Planning Sizing Calculator 10g (10.1.2.0.2)
    This is on OTN at:
    http://www.oracle.com/technology/products/discoverer/files/discoverer10_1_2_0_2_sizing_calculator.xls
    It really is highly dependent upon the query and type of worksheet (crosstab/tabular).
    Also, you can monitor memory usage via Application Server Conrol: Discoverer link >> Performance tab (obviously after the fact :) )
    To use Loadrunner with Plus (is not trivial), you need:
    ·     discoverer5.jar
    ·     disco5i.jar
    ·     xmlparserv2.jar
    ·     source.jar
    discoverer5.jar can be found on your BI mid tier under $ORACLE_HOME/discoverer/lib
    disco5i.jar can be found on your BI mid tier under $ORACLE_HOME/discoverer/plus_files
    xmlparserv2.jar can be found on your BI mid tier under $ORACLE_HOME/lib
    I believe source.jar may have to come from Mercury
    Hope that helps. Comments welcomed.
    ~Steve.

  • PROBLEM AUTHENTICATE PERFORMANCE MONITOR

    <b>HI,
    I try using Performance Monitor, but clic to link Performance Monitor in MenuTreeView from weblogic Console, received this stacktrace log:
    PLEASE HELP ME
    THANKS</b>
    <09/09/2005 16h01min06s BRT> <Error> <HTTP> <BEA-101017> <[ServletContext(id=109935021,name=PerformanceMonitor,context-path=/PerformanceMonitor)] Root cause of ServletException.
    java.lang.NullPointerException
    at weblogic.management.console.tags.TextTag.getText()Ljava.lang.String;(TextTag.java:46)
    at weblogic.management.console.tags.LinkTag.doStartTag()I(LinkTag.java:126)
    at weblogic.management.console.tags.StandardBannerTag.printEnd()V(StandardBannerTag.java:186)
    at weblogic.management.console.tags.StandardBannerTag.doEndTag()I(StandardBannerTag.java:114)
    at jsp_servlet.__prfinstall._jspService(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(__prfinstall.java:250)
    at weblogic.servlet.jsp.JspBase.service(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(JspBase.java:33)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava.lang.Object;(ServletStubImpl.java:996)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Lweblogic.servlet.internal.FilterChainImpl;)V(ServletStubImpl.java:419)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(ServletStubImpl.java:315)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()Ljava.lang.Object;(WebAppServletContext.java:6452)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic.security.subject.AbstractSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(Lweblogic.servlet.internal.ServletRequestImpl;Lweblogic.servlet.internal.ServletResponseImpl;)V(WebAppServletContext.java:3661)
    at weblogic.servlet.internal.ServletRequestImpl.execute(Lweblogic.kernel.ExecuteThread;)V(ServletRequestImpl.java:2630)
    at weblogic.kernel.ExecuteThread.execute(Lweblogic.kernel.ExecuteRequest;)V(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run()V(ExecuteThread.java:178)
    at java.lang.Thread.startThreadFromVM(Ljava.lang.Thread;)V(Unknown Source)
    --------------- nested within: ------------------
    weblogic.management.console.utils.NestedJspException - with nested exception:
    [java.lang.NullPointerException]
    at weblogic.management.console.tags.LinkTag.doStartTag()I(LinkTag.java:141)
    at weblogic.management.console.tags.StandardBannerTag.printEnd()V(StandardBannerTag.java:186)
    at weblogic.management.console.tags.StandardBannerTag.doEndTag()I(StandardBannerTag.java:114)
    at jsp_servlet.__prfinstall._jspService(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(__prfinstall.java:250)
    at weblogic.servlet.jsp.JspBase.service(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(JspBase.java:33)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava.lang.Object;(ServletStubImpl.java:996)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Lweblogic.servlet.internal.FilterChainImpl;)V(ServletStubImpl.java:419)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(ServletStubImpl.java:315)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()Ljava.lang.Object;(WebAppServletContext.java:6452)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic.security.subject.AbstractSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(Lweblogic.servlet.internal.ServletRequestImpl;Lweblogic.servlet.internal.ServletResponseImpl;)V(WebAppServletContext.java:3661)
    at weblogic.servlet.internal.ServletRequestImpl.execute(Lweblogic.kernel.ExecuteThread;)V(ServletRequestImpl.java:2630)
    at weblogic.kernel.ExecuteThread.execute(Lweblogic.kernel.ExecuteRequest;)V(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run()V(ExecuteThread.java:178)
    at java.lang.Thread.startThreadFromVM(Ljava.lang.Thread;)V(Unknown Source)
    Message was edited by:
    fabricio.soares

    Thanks for your answer, i have a doubt about cause the problems I have to install the license but as you say it say that should say so.
    I really appreciate your help

  • FAQS on Performance Tuning

    Can I have some FAQ's on Performance Tuning....

    Hi Venkat,
    Please refer the link,
    performance tuning
    Regards,
    Hema.
    Reward points if it is useful.

  • Performed a 'clear cache' on CE-560, now 'sh stat...' no longer shows stats

    The CFS volume on our CE was full. I plan on adjusting the volume sizes in the near future, until then, I performed a 'clear cache' and a 'cfs clear' to free things up.
    Now the CE admin webpage no longer shows stats under the Reporting link--performing a 'sh stat http usage' from the console results in the following error:
    'stat/cache/http/usage/cpu/sum not found'
    Do I need to restart the CE to start gathering stats again?

    Actually, I performed a 'clear cache' first. After a day or two and not seeing any disk stats (wanted to see how much was freed up), I tried a 'cfs clear' as well. Anyhow, will try rebooting.
    Thanks

  • Where to find the performance counter description?

    Hi,
    I found this link Performance Monitor Counters for perfmon counter of Windows NT. Now we are having Windows Server 2012 R2, but I cannot find the latest
    version of perfmon counter for the corresponding OS. 
    please help!
    thank you!
    Ah_Chao|| MCSE,VCP,EMCSAe

    Step 1: Enabling Disk Performance Counters 
    Ensure Task Manager is closed.
    Launch the Command Prompt using the "Run as Administrator" option. 
    Enter the following at the Command Prompt: 
    diskperf -Y
     Hit Enter.
    Close the Command Prompt.
    Re-open the Task Manager.
    After running the diskperf command, the ability to view Disk performance statistics on the performance tab should now be visible.
    Don 
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable. 
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • E3000 Storage Link Question

    I have a WRT600N and am unhappy with the storage link performance, usually in the 3-5Mb/s range. Does the e3000 have improved USB speeds? I would consider a upgrade if it does.

    I don't know about USB speeds for the E3000, but I can tell you using a USB device connected to the router is an absolute lesson in frustration.
    You would expect this to be completely plug and play ... i.e. setting it up via the browser and share, but it seems to have some sort of dependency which I have not found a solution for.
    I have a Hitachi 2TB USB drive.  When I try to backup to the drive when it is in the router, everything works fine for five minutes, then the device is no longer seen and the backup fails.  I cna access the drive for "short" periods of time, but it seems for doing backups which take more than five minutes, the device is lost.   I am using Norton Ghost.
    I have absolutely no problems if I connect the drive to a desktop that is accessed from the other network systems.  The problem is that the dekstop needs to stay on all the time .. something I would rather do with the router.
    Basically I find the storage management from the E3000 to be absolutely useless to me, and it was one of the reasons I bought this router in the first place.
    Yes, I am running the latest fireware .... Dec. 2010.
    If anyone else has run into this issue (Norton Ghost backups to a USB drive in the router), please let me know the magic bullet.  In the meantime, my backups continue to go to a desktop share.
    Thanks

Maybe you are looking for

  • How do I share my library with a family member and not get their music?

    I have an itunes music library. My husband has it on an ipod. He would like to add music that I don't want. I would like him to open his own account to purchase his music but he would still like my music as well. How do we do this?

  • Not able to create, deleted user again in OIM

    Hi, As part of our porcess we susped the user on the next day of his/her last working day. And after 20 days we are deleting that user from OIM. Now the deleted user again re-hire into the organization. So we need to re-create the user in OIM. But we

  • Not enough memory to print this document

    Hello all, I am trying to print tax forms, something I have done for years with no problem. I used a popular tax program to create a PDF file, copied this file to my G3/266 running Mac OS 9.1, and opened it using Acrobat Reader 4.0. Several pages sho

  • What do we do if Applications are not working in iPod touch?and why?

    What do we do ifif applications are not working in iPod touch?why??

  • Unable to printer through network

    Hi, I am currently unable to print through the wireless network.  I set up the printer yesterday, and it printed ok. The printer is a HP Office Jet Pro Preium . When I try to print I get the message "Unable to communicate with printer.  Printer unava