How can i increase performance of interface

while i am runing interface in odi it takes 5 days.so how can i increase performance of interface.
source contains: 30 crores of records
i want copy 30 crores to target.
source:oracle
target:oracle
i am using lkm:lkm sql to sql
IKM:ikm control append
Edited by: 967609 on 25 Oct, 2012 2:55 AM
Edited by: 967609 on 25-Oct-2012 10:13

IT IS CREATED VIEW AND SYNONYM.
MY SERVER NAME IS REPA,
ANTHOER SERVERNAE IS MISREPL
create or replace view REPA.C$_0XX_TR
     C1_TJD,
     C2_CID,
     C3_BOO,
     C4_TYPE,
     C5_GRP,
     C6_POAM,
     C7_BALINT,
     C8_DUIN2,
     C9_CRLMT,
     C10_IRN,
     C11_TDUE,
     C12_CHKHLD,
     C13_WDLMT,
     C14_ZSBU,
     C15_BAL,
     C16_MCHG,
     C17_LCHG,
     C18_ACR,
     C19_CR,
     C20_DR,
     C21_CRCD
) as
select * from (
select     
     XX.TJD     C1_TJD,
     XX.CID     C2_CID,
     XX.BOO     C3_BOO,
     XX.TYPE     C4_TYPE,
     XX.GRP     C5_GRP,
     XX.POAM     C6_POAM,
     XX.BALINT     C7_BALINT,
     XX.DUIN2     C8_DUIN2,
     XX.CRLMT     C9_CRLMT,
     XX.IRN     C10_IRN,
     XX.TDUE     C11_TDUE,
     XX.CHKHLD     C12_CHKHLD,
     XX.WDLMT     C13_WDLMT,
     XX.ZSBU     C14_ZSBU,
     XX.BAL     C15_BAL,
     XX.MCHG     C16_MCHG,
     XX.LCHG     C17_LCHG,
     XX.ACR     C18_ACR,
     XX.CR     C19_CR,
     XX.DR     C20_DR,
     XX.CRCD     C21_CRCD
from     REPA.XX@REMOTE XX
where     (1=1)
create synonym     STG.C$_0XX_TR
for           REPA.C$_0XX_TR@remote
insert into     STG.XX_TR
     TJD,
     CID,
     BOO,
     TYPE,
     GRP,
     POAM,
     BALINT,
     DUIN2,
     CRLMT,
     IRN,
     TDUE,
     CHKHLD,
     WDLMT,
     ZSBU,
     BAL,
     MCHG,
     LCHG,
     ACR,
     CR,
     DR,
     CRCD
select
TJD,     CID,
     BOO,
     TYPE,
     GRP,
     POAM,
     BALINT,
     DUIN2,
     CRLMT,
     IRN,
     TDUE,
     CHKHLD,
     WDLMT,
     ZSBU,
     BAL,
     MCHG,
     LCHG,
     ACR,
     CR,
     DR,
     CRCD
FROM (
select      
     C1_TJD TJD,
     C2_CID CID,
     C3_BOO BOO,
     C4_TYPE TYPE,
     C5_GRP GRP,
     C6_POAM POAM,
     C7_BALINT BALINT,
     C8_DUIN2 DUIN2,
     C9_CRLMT CRLMT,
     C10_IRN IRN,
     C11_TDUE TDUE,
     C12_CHKHLD CHKHLD,
     C13_WDLMT WDLMT,
     C14_ZSBU ZSBU,
     C15_BAL BAL,
     C16_MCHG MCHG,
     C17_LCHG LCHG,
     C18_ACR ACR,
     C19_CR CR,
     C20_DR DR,
     C21_CRCD CRCD
from     STG.C$_0XX_TR
where          (1=1)     
) ODI_GET_FROM
i am getting following error
ODI-1228: Task INT_DBLINK (Integration) fails on the target ORACLE connection STG.
Caused By: java.sql.SQLException: ORA-12154: TNS:could not resolve the connect identifier specified
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
     at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
     at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
     at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
     at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
     at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
     at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1115)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488)
     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)
     at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3954)
     at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1539)
     at oracle.odi.runtime.agent.execution.sql.SQLCommand.execute(SQLCommand.java:163)
     at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:102)
     at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:1)
     at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
     at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
     at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
     at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:558)
     at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:464)
     at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
     at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:366)
     at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
     at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
     at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:292)
     at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:855)
     at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
     at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
     at java.lang.Thread.run(Thread.java:662)

Similar Messages

  • Mail has 16k  messages, and performance is very slow, with loading times taking up to 5 seconds every time I open Mail. How can I increase performance?

    Mail has 16k  messages, and performance is very slow, with loading times taking up to 5 seconds every time I open Mail.
    How can I increase performance?
    I'm running a MacBook Air 4GB 1.7GHz  10.7.2.
    Graham

    One possible solution would be to organise your inbox into folders.
    Its never relly good on any system to have one folder that has everything in it.
    Try going to you web gui for that mail account and organise your folders and move mails from your inbox into corresponding folders for better organisation.
    Several folders containing the same amount of one folder will usually load a little quicker as the folder may not be accessed to download its content unless veiwed.
    So having 10 folders with organised content, and you inbox as an area thats to hold only new emails would work much much quicker with imap.
    Most imap servers will only update the contents of a folder when its veiwed.

  • How can i increase performance of my system

    Dear Experts ,
    here i have some problems in my system
    it seems very slow now i need to speed up my system performance
    so please let me any suggessions on this
    i checked in RZ20 buffer values
                 Program -> SpaceUsed --> 100%
                 Screen -->SpaceUsed -->99%
                  InitialRecords -->HitRatio -->47%
                 InitialRecords -->Swap -->106.5 /min ... these all are in red color
    how can i Reset these buffer values ..
    i already restarted my instance but system performnce is not much more increased
    Regards

    Hi mark,
    thanks for your reply
    my swaps Deatils
        buffer             Hit Rat     Alloc.KB      Free Sp      Dir.size     Free DirEnt     %Free Dir     Free Dir     Swaps    DB Accs
    Field definition     93.02       32,504         2,271           7.57           32,000            26,579        83.06        22,069     29,368
    Initial records       57.66       7,000         2,451          40.85              8,000                 727          9.09          4,808     12,081
    program                97.90   450,000          891             0.21          112,500         101,910         90.59        31,097    125,505
    CUA                    96.17         3,000          325           13.22              1,500             1,385         92.33        38,803    1,109
    Screen                 97.38        4,297            43            1.05               2,000            1,599          79.95             521    2,049
    Export/import          68.27     4,096       1,171           34.70              2,000             1,495          74.75        65,343
    Please Let me your suggesitions on my buffer values
    Regards

  • How can you increase performance ?

    Hello,
    I am building a site but it's framerate is very slow. 
    I read some articles that Sprites are much faster then movieclips. 
    For example i have 5 long movieclips (4300 pixels in width). These clips scroll in horizontal direction to get a parallax effect.
    One of these movieclips contains other movieclips. (all movieclips are not animating and are just graphics).
    So I thought to increase performance to convert all movieclips to Sprites as I read that Sprites are better for performance.
    I came up with this method:
    function castMovieClipToSprite(source:MovieClip, recursive:Boolean = true):void {
         for (var i:int = 0; i < source.numChildren; i++) {
         var child:DisplayObject = source.getChildAt(i) as DisplayObject;
         if (child is MovieClip && recursive) {
         castMovieClipToSprite(MovieClip(child), recursive);
         child = Sprite(child);
    But the performance has slightly improved, but if i run the debugger I see that the child objects are still of type MovieClip.
    Does anyone know other way to increase performance?
    Thanks,
    Chris.

    I also run some more test and noticed some strange behaviours,
    Testlinks:
    - Without the gradient ( http://www.rhbmprogress.nl/temp/cs/performanceTest1/ )
    - With the gradient ( http://www.rhbmprogress.nl/temp/cs/performanceTest2/ );
    Ps. I did not see any difference if I disabled the SWFProfiler so I left it on for test purpuse.
    Desktop test,
    Firefox version:  4.0.1.
    Flash version: 10.2.152.32  (debugger version)
    Test1 - > 60 fps
    Test2 -> 55 fps
    Internet Explorer version: 9.0811.1642
    Flash version: 10.3.181.23 (debugger version)
    Test1 - >60 fps
    Test2 ->55 fps
    Other destop computer test:
    Firefox version 3.6.13
    Flash version: 10.1.52.14 (no debugger)
    Test 1-> 58 fps
    Test 2-> 35 fps
    Internet Explorer version 9.0.8112.1642
    Flash version: 10.3.181.23 (no debugger)
    Test1-> 60 fps
    Test2-> 37 fps
    As you can see there are some major difference between flash versions and browser types and versions.
    So the solid fill seems to have a stable fps, but the alpha gradient fill does not appear so.
    I wonder what flash version you used and what browser type and version

  • How Can I increase performance of Query with Distinct Keyword

    Dear Experts,
    In my Query when I execute this without Distinct it give result very soon,
    But when I excute this with Distinct its performance is very slow is there any option for increase the performance with Distinct .
    I have to use Distinct according to our rewuirement.

    neither DISTINCT nor GROUP BY do sort. If you need to sort, use ORDER BY. Slight correction, they do a sort, but your results are not guarenteed to be sorted.
    The overhead of a sort is incurred, if your results is large enough (my test below isn't) you will be sorting to disk. Which as we all know can be very slow.
    9i:
    SQL> SET TRIMSPOOL ON
    SQL> CREATE TABLE D (A VARCHAR2(2));
    Table created.
    SQL> INSERT INTO D (A) SELECT DBMS_RANDOM.STRING('U',2) FROM DUAL CONNECT BY LEVEL <= 5000;
    5000 rows created.
    SQL> COMMIT;
    Commit complete.
    SQL> SET AUTOTRACE TRACEONLY EXPLAIN;
    SQL> SELECT DISTINCT A FROM D;
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE
       1    0   SORT (UNIQUE)
       2    1     TABLE ACCESS (FULL) OF 'D'
    SQL> SELECT A FROM D GROUP BY A;
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE
       1    0   SORT (GROUP BY)
       2    1     TABLE ACCESS (FULL) OF 'D'
    SQL> SELECT DISTINCT A FROM D ORDER BY A;
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE
       1    0   SORT (UNIQUE)
       2    1     TABLE ACCESS (FULL) OF 'D'
    SQL> SPOOL OFF10g
    SQL> SET TRIMSPOOL ON
    SQL> CREATE TABLE D (A VARCHAR2(2));
    Table created.
    SQL> INSERT INTO D (A) SELECT DBMS_RANDOM.STRING('U',2) FROM DUAL CONNECT BY LEVEL <= 5000;
    5000 rows created.
    SQL> COMMIT;
    Commit complete.
    SQL> SET AUTOTRACE TRACEONLY EXPLAIN;
    SQL> SELECT DISTINCT A FROM D;
    Execution Plan
    Plan hash value: 3079699766
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |  5000 | 15000 |     7  (29)| 00:00:01 |
    |   1 |  HASH UNIQUE       |      |  5000 | 15000 |     7  (29)| 00:00:01 |
    |   2 |   TABLE ACCESS FULL| D    |  5000 | 15000 |     5   (0)| 00:00:01 |
    Note
       - dynamic sampling used for this statement
    SQL> SELECT A FROM D GROUP BY A;
    Execution Plan
    Plan hash value: 2712634873
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |  5000 | 15000 |     7  (29)| 00:00:01 |
    |   1 |  HASH GROUP BY     |      |  5000 | 15000 |     7  (29)| 00:00:01 |
    |   2 |   TABLE ACCESS FULL| D    |  5000 | 15000 |     5   (0)| 00:00:01 |
    Note
       - dynamic sampling used for this statement
    SQL> SELECT DISTINCT A FROM D ORDER BY A;
    Execution Plan
    Plan hash value: 1773491675
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |  5000 | 15000 |     8  (38)| 00:00:01 |
    |   1 |  SORT UNIQUE       |      |  5000 | 15000 |     7  (29)| 00:00:01 |
    |   2 |   TABLE ACCESS FULL| D    |  5000 | 15000 |     5   (0)| 00:00:01 |
    Note
       - dynamic sampling used for this statement
    SQL> SPOOL OFF

  • How can i increase performance JSP with database?

    Hi,
    I am working a forum.
    I have been facing a problem.
    i am getting collection of records from sql server database to jsp page. here all the records to take long time (*delayness jsp with database*).
    plz any bodies know that increase the permance, tell me.
    thanks & regards,
    k.s.kumar

    again very bad idea never use Put DB Code or Business Logic or Special Service requests inside the servlets/backing beans.
    Ideally the below is the method which is recommended for a Peformant J2EE application which focuses at modulality,configurablity,scalablity & performance.
    http://java.sun.com/blueprints/corej2eepatterns/Patterns/index.html
    Anyways,it might be a costly in terms of investment.Ideally i personally fell the below way/patterm could be comparable.
    <!-- View / Presentation Layer -->
    STEP 1 --> VIEW RENDERED(JSP renders view using a View Object/Objects)
    STEP 2 --> USER (Fills Forms accordingly and request for an action)
    <!-- Controller part -->
    STEP 3 --> Controller(Servlet+Backing Bean)
    STEP 3.1 ---> Mapps the request made into a View Object & Scopes it (Done by servlet )
    STEP 3.2 ---> validation of the data in the VO (and servlet is responsible to find appropriate Backing Bean to pass on the respective View Object)
    STEP 3.3 ----> Backing Bean takes help of a ServiceLocator Object(Singleton Object) and gets appropriate Business Object which takes care of all the appropriate business rule(Managed by Specific Containers)
    <!-- Service Locator takes help of specific Stubs to provide access to specific business Object -->
    <!-- MODEL PART -->
    STEP 3.4 ---->Backing bean passes on respective View Object to the Business Object and Business Object apply business rule on the data recievd from the Backing bean and sends appropriate DTO to DAO Object(Singleton Object)
    STEP 3.5 ----> DAO executes responsible DB query and returns a DTO/Collection of DTO to Business Object.
    STEP 3.6 ----> Business Object apply business rules on the data and then passes it back to backing bean.
    STEP 3.7 -----> Backing Bean receievs appropriate DTO/Collection of DTO sent by Business Object Update the View Object Accordingly.
    STEP 3.8 -----> Depending on the results return by Business Object the backing bean returns to reference appropriate JSP to forward/redirect.
    STEP 3.9 -----> Servlet identifies the reference returned and forward/redirects accordingly.
    STEP 4 ---> Repeat STEP 1
    NOTE: One can make use of any builtin frameworks(like struts,JSF,tapestry,Spring MVC,etc or your custom built framework in VC layers, EJB or Spring IoC or Custom Built Component Layer handling business objects and any ORM like hibernate,Oracle Toplink,Ibatis,JDO,JPA or specific custom devoloped DAO layer) to do this job.
    Might Sound bit complicated but is a better way to plug & play with each layer and can enusure other layer is not distrubed because of change in one layer,distributes the load on respective layer & so on.
    Hope that sounds logical
    REGARDS,
    RaHuL

  • How can we increase performance with JAI.

    Hi All,
    I am using JAI for breaking multi page TIFF image into different files, which each file contains a single page TIFF.
    In that process we are using ImageDecoder, it is taking too much.,
    which causes performance botteneck.
    Can any one suggest me the best practise which is used to break multi page TIFF file into single page TIFF files.
    Thanks

    See the following line in the JDEVHOME/jdev/bin/jdev.conf file:
    AddVMOption  -XX:MaxPermSize=160M

  • 20" iMac - How can I increase performance?

    I have a 20" intel core duo with 2GB RAM. I mainly use Aperture & CS2 (in general not at the same time). I am overal 'satisfied' with the performance but after reviewing the running processes, feel that potentially there is some items I could disable to free up available memory and cpu. Any reccomendations? Also, any tweaks to the OS would be appreciated, I am a PC guy!! Thanks!

    You have to look at where your bottlenecks are.
    1) Rosetta. Running CS2 in Rosetta will be the largest bottleneck on speed. There's really nothing more that can be done here, since you have maxed out the RAM, which is VERY helpful for Rosetta speed.
    2) Hard Drive. The hard drive is the slowest component of a modern computer system (orders of magnitude slower than RAM). But your iMac has a 7200 RPM drive, and you have maxed the RAM so there is minimal paging to disk, so no help here.
    As far as disabling OS components, you can avoid the use of a background image in the finder. Use a simple pattern, or even better, create a 1x1 pixel picture in Photoshop and use that as your desktop picture. This will save RAM.
    Disable Dashboard widgets that you're not using. Don't use anti-aliasing on Finder labels. Use thousands of colours instead of millions.
    But in truth, all of this won't make as big a difference as avoiding the use of Rosetta. Your iMac is VERY powerful, and you've done the right thing by maxing the RAM. When 2GB sticks become a bit cheaper, I would go up to 4GB (the 2GB limit is artifical, due only to the lack of availability of larger chips).
    Rosetta eats RAM, and slows the system down. I use MS Word every day on my Ph.D. thesis, and for this use, Rosetta is fine. But I also use Illustrator 10, and it can be a bit slow at times.
    Frankly, until Adobe updates their apps, you've done all you can do. Remember, for basic graphic manipulation, try a program called Graphic Converter (http://www.lemkesoft.de/en/graphcon.htm), which IS a Universal Binary, and is VERY fast on my Intel iMac.
    Hope this helps!

  • How can I increase the size of letters beyond that obtained by tapping?

    How can I increase the size of the letters beyond that obtained by tapping (but retaining reflow)?

    You may perform pinch to zoom operation , also known as two fingers zoom.  You may not see the animation in reflow as in to her modes , but the size of the letters should increase.
    -vaibhav

  • How can I increase the size of UI toolbars across Adobe Creative suite?

    How can I increase the size of UI toolbars across Adobe Creative suite especially indesign, photoshop, illustrator on a new Apple retina display 2560 x 1140 with out changing/scaleing my screen resolution down?

    While some applications let you change the font size of the UI (notably Photoshop in Interface Preferences), others do not yet (like InDesign).
    You'll need to make your request using this form for it to be seen by the product manager(s):
    Adobe - Feature Request/Bug Report Form
    Make a good case because there are hundreds (thousands?) of things people request InDesign to do.

  • How can I increase the font size of just one paragraph?

    I am using Dreamweaver CS4. I want to increase the font size and style of just one paragraph, but the "page properties" changes the font size for the whole page. In this regard: how can I increase the font size (and style) for just one word. Thank you, Mr. Monroe

    Nancy O.
    How do I get to “CSS Properties”? Do I click on Window > CSS Styles?
    When I click on Window > CSS Styles, I do not see the text “Custom Class.”
    I tried inserting (manually) the HTML code you suggested for the paragraph I want to change and nothing happened. I tried [<span class=”16px”>text came in here</span)]
    I read in a tutorial that after you create a CSS style sheet, all you have to do is select the text you want to apply it to and then attach the style sheet to that text. I can imagine, however, that there are some special steps that one has to perform in order to do this.
    Thanks for your help.
    Mr. Monroe

  • How can I increase the character limit of my text messages for Droid Maxx 4.4?

    How can I increase the character limit of my text messages for Droid Maxx 4.4?

    Send as a MMS.

  • How can I increase the font size of my email when I print it out, it is printing tiny

    How can I increase the font size when I print out emails, it is printing tiny size?

    In the Print dialog window, click the small reveal-button to the right of the printer's name -
    The window will expand to show additional settings (similar to 'old' Page Setup) -
    Be sure "Scale:" is set to 100% and the 'Keep apparent font size' item is checked.

  • How can I increase the members in the chat groups?

    The number of members in the cha groups is limited (3000)
    How can I increase the members in the chat groups?

    Elaborate.

  • How can I have an english interface to labview if the package is in german

    Hi ,
    I'm a student that makes a project in Germany using labview ... the problem is that my german is not that good , and the labview is in german so here is my question :
    how can I have an  english interface to labview if the package is in german (labview 7 )
    Any help would be apprecieted.

    The only way to really have everything in English is to install an English version of LabVIEW.  You may want to talk to your local NI sales representative about the possibility of getting a different version.
    Doug M
    Applications Engineer
    National Instruments
    For those unfamiliar with NBC's The Office, my icon is NOT a picture of me

Maybe you are looking for