Import Running in STMS

Dear All,
i transported a request from QAS to PRD and it was showing (Import Running ,showing Truck)  for 2 hours .So, I deleted it and made new transport request from consultant When i import it then it also showed Import Running. After it i transported more request but all transport requests are showing Import Running from 2 hours in STMS.
what should i do for this issue?
regards,
majamil

Hi Ashok,
thanks for reply,
fyi, the transport request successfully imported from DEV100 to QAS400 but not on PRD600.
when i execute
Goto sm37->jobname RDDIMPDP and user DDIC with selection criteria status released.
result is: No job matches the selection criteria
schedule the job by running the program RDDNEWPP with t-code se38 in client 000.
when i click on Normal table for scheduling then i get:
information:
Error scheduling background job
RDDIMPDP_CLIENT_ 600 in 600
I have already deleted those transport requests which were showing Import Running in STMS from 2 hour.
after this when i transported the new requests then i faced that truck mean Import Running from 1 hour.
regards,
majamil

Similar Messages

  • 11.5.9 - standard Journal Import Run - Scheduling

    In 11.5.9, Is it possible to schedule the standard concurrent program "Journal Import" to import the records from GL interface instead of doing it manual Journal --> Import --> Run? . I have to pass only sourcename withhout group-id.
    Thanks in advance.

    Please review the following note in metalink:
    How To Schedule Journal Import Program [ID 371189.1]
    The note mentions to apply patch if you want to get the scheduling feature in releases earlier than 11.5.10.
    Hope this helps.
    Thanks and Regards
    Manish Jain.

  • Transport Request in PRD is in the IMPORT RUNNING status..

    Hello Experts,
    I have a problem while i m importing the request in PRD,the request is in the state of IMPORT RUNNING.
    While i have imported the same request in the other systems DEV and QAS successfully.
    I have seen the RDDIMPDP in sm37 it is getting cancelled. Then in 000 client i have runned the job RDDNEWPP with the DDIC user. And did the same in the PRD Live Clinet.
    I have also triggered it in sm64 and then checked the job in sm37 the job is finished successfully but the request is still in the same state.
    I have checked the consistency its all ok.
    One of the request suddednly got imported and rest are still in the same Import Running state.
    Now this made me curious if one got imported then why not other requests getting imported.
    All the other requests are imported successfully in DEV and QAS successfully.
    A couple of days ago i have made the changes to the Live Client in PRD for some requirment then i have revert back the changes to the non modifiable state. Does it have any effect on the transports. Because i have been facing this problem after the changes of the PRD Live Client.
    Please i would appreciate if anyone can help me giving the proper solution.
    Thanks.
    Regards.
    Mudassir Imtiaz.

    Hello Anindya.
    Thanks for your quick help. I have removed the entries from the table TRBAT and imported and it was successfully done.
    Now the problem is for each transport request i have to see the job RDDIMPDP and schedule it because its getting cancelled and for each transport request i have delete the entries from TRBAT table. Can you tell me something by which i dont have to go delete the entries from the table TRBAT every time. And i still wonder why the job RDDIMPDP is getting cancelled. I have also scheduled RDDNEWPP in Client 000 with DDIC and still the same problem.
    Another thing which i have noticed in sm21 is the job (RDDIMPDP) is getting scheduled in Application server but i have scheduled in DB server. Every  time i have to schedule the job from sm36 give the DB server in Exec. Server and execute.
    Thanks for your response.
    Regards.
    Mudassir Imtiaz.

  • Current running SQL stms execution plan?

    Hi,
    Is it any ways to findout the current running SQL stms execution plan?
    without using Explain plan & autotrace.
    Thanks in advance,
    Thomas.

    I'm using this code. You just have to give the Session Identifier (&SID ):SELECT     '| Operation                                     |  Objet   | Lignes| Bytes|  Cout  | Pstart| Pstop |' as "Plan Table"  FROM DUAL
    UNION ALL
    SELECT     '----------------------------------------------------------------------------------------------------' FROM DUAL
    UNION ALL
    SELECT * FROM
             (SELECT /*+ NO_MERGE */
              RPAD('| '||
                   SUBSTR(
                        LPAD(' ',1*(LEVEL-1)) || OPERATION || DECODE(OPTIONS, NULL,'',' '||OPTIONS), 1, 47
                         ), 48, ' '
              )||'|'||
              RPAD(
                   SUBSTR(OBJECT_NAME||' ',1, 9), 10, ' '
              )||'|'||
              LPAD(
                   DECODE(CARDINALITY,
                        NULL,'  ',
                        DECODE(SIGN(CARDINALITY-1000),
                              -1, CARDINALITY||' ',
                             DECODE(SIGN(CARDINALITY-1000000),
                                   -1,TRUNC(CARDINALITY/1000)||'K',
                                  DECODE(SIGN(CARDINALITY-1000000000),
                                       -1,TRUNC(CARDINALITY/1000000)||'M',
                                       TRUNC(CARDINALITY/1000000000)||'G')
                        ), 7, ' '
              )||'|'||
              LPAD(
                   DECODE(BYTES,
                        NULL,' ',
                        DECODE(SIGN(BYTES-1024),
                             -1, BYTES||' ',
                             DECODE(SIGN(BYTES-1048576),
                                  -1, TRUNC(BYTES/1024)||'K',
                                  DECODE(SIGN(BYTES-1073741824),
                                       -1,TRUNC(BYTES/1048576)||'M',
                                       TRUNC(BYTES/1073741824)||'G')
                        ), 6, ' '
              )||'|'||
              LPAD(
                   DECODE(COST,
                        NULL,' ',
                        DECODE(SIGN(COST-10000000),
                             -1, COST||' ',
                             DECODE(SIGN(COST-1000000000),
                                  -1, TRUNC(COST/1000000)||'M',
                                  TRUNC(COST/1000000000)||'G')
                        ), 8, ' '
              )||'|'||
              LPAD(
                   DECODE(PARTITION_START,
                        'ROW LOCATION', 'ROWID',
                        DECODE(PARTITION_START,
                             'KEY', 'KEY',
                             DECODE(PARTITION_START,
                                  'KEY(INLIST)', 'KEY(I)',
                                  DECODE(SUBSTR(PARTITION_START, 1, 6),
                                       'NUMBER', SUBSTR(SUBSTR(PARTITION_START, 8, 10), 1,LENGTH(SUBSTR(PARTITION_START, 8, 10))-1),
                                       DECODE(PARTITION_START,
                                            NULL,' ',
                                            PARTITION_START)
                        )||' ', 7, ' '
              )||'|'||
              LPAD(
                   DECODE(PARTITION_STOP,
                        'ROW LOCATION', 'ROW L',
                        DECODE(PARTITION_STOP,
                             'KEY', 'KEY',
                             DECODE(PARTITION_STOP,
                                  'KEY(INLIST)', 'KEY(I)',
                                  DECODE(SUBSTR(PARTITION_STOP, 1, 6),
                                  'NUMBER', SUBSTR(SUBSTR(PARTITION_STOP, 8, 10), 1,LENGTH(SUBSTR(PARTITION_STOP, 8, 10))-1),
                                  DECODE(PARTITION_STOP,
                                       NULL,' ',
                                       PARTITION_STOP)
                   )||' ', 7, ' '
              )||'|' AS "Explain plan"
         FROM V$SQL_PLAN
         START WITH (ADDRESS = (SELECT SQL_ADDRESS FROM V$SESSION WHERE SID=&SID)
                   AND HASH_VALUE = (SELECT SQL_HASH_VALUE FROM V$SESSION WHERE SID=&SID)
                   AND CHILD_NUMBER = 0
                   AND ID=0 )
         CONNECT BY PRIOR ID = PARENT_ID
                        AND PRIOR ADDRESS = ADDRESS
                        AND PRIOR HASH_VALUE = HASH_VALUE
                        AND PRIOR CHILD_NUMBER = CHILD_NUMBER
         ORDER BY ID, POSITION)
    UNION ALL
    SELECT '----------------------------------------------------------------------------------------------------' FROM DUAL;Regards,
    Yoann.

  • Import status- import running does not change during the mass import of TR

    Dear All,
    I have successfully imported single requests in my newly installed SAP ECC EHP4 PRD system but when I have tried to import 8 transport requests(Mass Import) then the Import status is not changing from import running (Truck button still appears).
    But the effect of the request is seen in the production system but the status does not change.
    I have checked the logs and found that all the requests have been imported successfully but the Truck status does not change.
    I have restated the system but no use still the same.
    Thanks in Advance...
    Latha

    Import Running for a long time on ECC 6.0
    The background job RDDIMPDP is running on client 000 as well as the relevant client.
    Below is the TP System Log:
    WARNING: System CC6. Warning. 20090914042136 :
    WARNING: Background job not running properly. Function: G Jobcount: 04512801 Status: S.
    Please check the system. Use transactions SM21, SM37, SM50.
    WARNING: (This warning is harmless if no further warnings follow.)
    As per NOTE: 26966, it could be b'cause the background job process slots are occupied,
    Regards
    Vikas Nagar

  • Import running for over a week

    hi friends
    I need to customize XSS business packages using NWDS. I installed JDI and created tracks in CMS. I was able to check in all the required files but when i am trying to import those files, i am not able to import ESS and MSS files. all other files have been imported successfully but for these two files, it is showing import running for over a week now. Has anyone faced a similar situation before? kindly respond if u have the solution.
    with thanks
    amit

    Hi,
    I am able to import the ESS file in CMS but I am getting problem in CBS.
    In my case ESS import took 22hours and I got communication error and we restarted the server and I click on the import button, in this time, the import is finished on CMS and I am getting problem in CBS.
    This is the error message, I am getting,
    Please give me some ideas, what to do.
    Thanks,
    Balu
    Info:Starting Step CBS-make at 2006-09-13 11:23:14.0020 -7:00
    Info:wait until CBS queue of buildspace DI1_XSSSP6_D is completely processed, before starting the import
    Info:waiting for CBS queue activity
    Error:CBS error on activation:
    caused by:CBS Server Error: CBS failed to communicate with some other server( internal code: COMMUNICATION_ERROR)
    com.sap.tc.cbs.client.error.CBSServerSideCommunicationException: CBS Server Error: CBS failed to communicate with some other server( internal code: COMMUNICATION_ERROR)
         at com.sap.tc.cbs.client.error.ErrorMapper.throwError(ErrorMapper.java:309)
         at com.sap.tc.cbs.client.impl.BuildSpace.activate(BuildSpace.java:789)
         at com.sap.cms.tcs.client.CBSCommunicator.importRequest(CBSCommunicator.java:403)
         at com.sap.cms.tcs.core.CbsMakeTask.processMake(CbsMakeTask.java:120)
         at com.sap.cms.tcs.core.CbsMakeTask.process(CbsMakeTask.java:347)
         at com.sap.cms.tcs.process.ProcessStep.processStep(ProcessStep.java:77)
         at com.sap.cms.tcs.process.ProcessStarter.process(ProcessStarter.java:179)
         at com.sap.cms.tcs.core.TCSManager.importPropagationRequests(TCSManager.java:376)
         at com.sap.cms.pcs.transport.importazione.ImportManager.importazione(ImportManager.java:216)
         at com.sap.cms.pcs.transport.importazione.ImportQueueHandler.execImport(ImportQueueHandler.java:585)
         at com.sap.cms.pcs.transport.importazione.ImportQueueHandler.startImport(ImportQueueHandler.java:101)
         at com.sap.cms.pcs.transport.proxy.CmsTransportProxyBean.startImport(CmsTransportProxyBean.java:583)
         at com.sap.cms.pcs.transport.proxy.CmsTransportProxyBean.startImport(CmsTransportProxyBean.java:559)
         at com.sap.cms.pcs.transport.proxy.LocalCmsTransportProxyLocalObjectImpl0.startImport(LocalCmsTransportProxyLocalObjectImpl0.java:1146)
         at com.sap.cms.ui.wl.Custom1.importQueue(Custom1.java:1169)
         at com.sap.cms.ui.wl.wdp.InternalCustom1.importQueue(InternalCustom1.java:2162)
         at com.sap.cms.ui.wl.Worklist.onActionImportQueue(Worklist.java:880)
         at com.sap.cms.ui.wl.wdp.InternalWorklist.wdInvokeEventHandler(InternalWorklist.java:2338)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:422)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:133)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:344)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:298)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:705)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:659)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:227)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:150)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:56)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:47)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Info:CBS server trace: com.sap.tc.cbs.api.CommunicationException: HTTP protocol error [reason: Parsing of the response body failed [reason:  com.sap.engine.lib.xml.parser.ParserException:

  • Import running

    Hi Gurus,
    I have created a product and  a software component and defined the usage dependencies in the SLD.
    I have created a domain, and a track for the software component. I also defined the required software components in the CMS. I have performed the activity "Import" of the required software components (SAP_BULDIT, SAP_JEE, SAP_JTECHS). After a long time, the status for these components changes to "Import Running".
    The question is "Import Running" means the three compoents (SAP_BULDIT, SAP_JEE, SAP_JTECHS) are imported into the configured "Run Time System".
    can the development configuration for the track can be imported into the NetWeaver Developer Studio with the status as "Import Running"?.
    I appreaciate your help!
    Thanks!

    Hi Vineeth,
    Thanks for the link. However, I am working on Sneak Preview version (NW04 SP16). I have followed the guide<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/419b479b-0801-0010-f8a1-c26208b4b209">Post Installation Guide for Sneak Preview NW04 SP15</a> to configure NWDI.  I was unable to redeploy DTR as mentioned in the step 3:
    <b>Open the SCA file “SAPDEVINF11_0.SCA” under
    <the_folder_you_extracted_the_files_to>NWSneakPreviewSP15SAP_Net
    Weaver_04_SR_1_Java_DVDJ2EE_OSINDEPJDIONLINE with WinZip or
    WinRAR and extract the sda file “sap.comtcdtr~dbschema.sda“.
    (Note, that there are installation instructions regarding this folder).</b>
    I did not find the file <b>sap.comtcdtr~dbschema.sda</b> in the folder. I maintained the rest clearly.
    Still, the SAP-JEE component status is "Import Running". The status for other components is "Import Failed". I have maintained the heap size as mentioned (512 MB) also.
    Please help me to get rid of this error for sneak preview.
    Thanks!
    Siribabu G.

  • Transports status "Import Running" truck icon

    Folks
    I am using TMS_TP_IMPORT. The import queue status is always "Import is running"...but when I click on the Job logs.....it says successful.
    How do get rid of this "Import is running" error in STMS

    go to STMS, double click on the SID
    Then GOTO>>IMPORT MONITOR
    u will see truck icon there
    Right click on it and say delete entry
    If this does not solve the problem,  than make sure no import is running in the system, then delete enteries from
    trbat, trjob, TMSTLOCKP, TMSTLOCKR and last few enteries from tpstat

  • Work Bencg request Import problem in STMS

    Dear Team,
      I would like to import the transport from Dev to PRD in STMS.
    While importing i am getting the following error log.
      Generation of programs and screens                                      
    Transport request   : SD1K900195                                        
      System              : SP1                                               
      tp path             : tp                                                
    Version and release: 372.04.10 700                                                                               
    Generation of programs and screens for transport request SD1K900195     
    Only generates programs with LOAD versions
    Start on 20.05.08 at 11:37:19                                                                               
    Ended on 20.05.08 at 11:37:20                                           No. of programs  /Min/Avg/Max (sec): 3  0 0 1                         No. of screens    /Min/Avg/Max (sec): 2   0 0 0                                                                               
    Generation of programs and screens                                      
      End date and time : 20080520113720                          
      Ended with return code: => 8 <==                                   
    Regadrs
    Senthil

    Hi,
    do you have expand icons to get more information (plus symbol)?
    I suppose you didn't watch the protocol at file system level.
    regards
    Walter Habich

  • Import running slow since last days.

    I have a issue where Oracle 9i database import is running very slow since last couple of days. The process used to be completed in 5 hours every day. But since last two days it is taking 10 to 15 hours to complete. I have checked the data-file size, and export dump-file sizes are consistent with what it used to be. There are no any significant changes in the database size no errors reported in the import and alert log files. Please help me Identify and resolve the real cause of this performance degrade.
    Thanks,
    Farhan
    Edited by: 884977 on Dec 2, 2012 11:25 AM

    --Exact OS version
    SunOS dbw01 5.10 Generic_141444-09 sun4v sparc SUNW,SPARC-Enterprise-T2000
    --Oracle database version
    Oracle9i Release 9.2.0.6.0 - 64bit Production
    PL/SQL Release 9.2.0.6.0 - Production
    CORE 9.2.0.6.0 Production
    TNS for Solaris: Version 9.2.0.6.0 - Production
    NLSRTL Version 9.2.0.6.0 - Production
    --Lines from import logfile
    Connected to: Oracle9i Release 9.2.0.6.0 - 64bit Production
    JServer Release 9.2.0.6.0 - Production
    Export file created by EXPORT:V09.02.00 via direct path
    import done in US7ASCII character set and AL16UTF16 NCHAR character set
    import server uses WE8ISO8859P1 character set (possible charset conversion)
    export client uses AL32UTF8 character set (possible charset conversion)
    . importing CFD_USER's objects into CFD_USER
    . . importing table "CFD_ACCOUNT_POLICY" 613 rows imported
    . . importing table "CFD_ACTIVE_EMPLOYEE_COUNT" 0 rows imported
    . . importing table "CFD_ADDRESS" 1435608 rows imported
    . . importing table "CFD_APPEAL" 1688 rows imported
    . . importing table "CFD_APPEALS_DOCUMENTS_LNK" 5155 rows imported
    . . importing table "CFD_APPEAL_NOTES_LNK" 2564 rows imported
    . . importing table "CFD_CALC_METHOD_CHANGE_HELPER" 38323 rows imported
    . . importing table "CFD_CODE" 379 rows imported
    . . importing table "CFD_CONSTRAINT_CONTEXT" 2823 rows imported
    . . importing table "CFD_CONSTRAINT_CRITERIA" 34070 rows imported
    . . importing table "CFD_CONTACT_INFORMATION_MV" 32018 rows imported
    --Command used
    imp CFDa_user/xxxxxxxx parfile=/export/home/oracle/shells/cfdtables.par file=/oradata/dump/cfdtables.dmp log=/oradata/dump/CFD_tablesimp.log ignore=y recordlength=65535 trace=y
    Thanks,

  • CMS : import running status continues

    hi ,
    I am moving my application from development server to production server. In production tab of CMS i hv imported . Tht import was running for more thn estimated time. also inbetwwen there was some problem with space on production server(/usr/sap 100%) which we resolved. But in CMS it is still showing import runnnig status for tht DC. How to solve this problem????

    Stop and Reimport.
    Check Note 98582

  • Import status in stms

    Hi,
    When i do an import in the PRD system the status doesn´t change from running to finished. The imports finished because the changes are in the programs that i´m changing but the status doesn´t changes.
    How can i fix this problem?
    Thanks
    Saludos / Regards

    viewing the log I see that the import process doesn't have the Check Versions and the Method Execution steps.
    I supose that it is still in transporting status because the system can´t do those actions. The other steps are succesfully completed (return code 0)
    Can I do something to do this steps manually? Or can I stop and start again the transport system without stopping the server?
    Thanks

  • IMPORT RUNNING since long days

    EXPERT!!
    I am importing the Language which didn't finish yet and small truck icon still showing which means that import is running ...
    REgards
    Anwer Waseem
    SAP BASIS

    Hello Anwer,
    Before taking any actions check for entries in 'TPSYSLOG'
    That will give you a perfect hint about the long running transport.
    Secondly, check the tp process at OS level, if it is active. (check file <SID>.LOB also)
    Thirdly, check for 'extents' for all tablespaces.
    Hope it helps
    Regards,
    Ammey Kesarkar

  • Is import running properly? Any problems expected later?

    Hi,
    I'm performing a Database import for a distributed SAP ECC 6.0 EhP4 SPS06 system based on SunOS 5.10 Oracle 10.2.0.4 for converting from non-Unicode to Unicode as part of a CUUC project.
    When performing the export:
         1. The checkbox for "Unicode Target System (Recommended)" was checked/selected
         2. Target Hardware Platform was selected correctly as Big-endian 4102 (for Sun SPARC as per SAP note 552464)
    When performing the import:
         1. DB character set was selected as UTF8
         2. SAP Code page was selected as 1100
    SAPINST is now performing the ABAP load and seems to be running well. However, Now I notice the following messages in the <package>.log files:
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (CNV) WARN: you set dbcodepage '1100' but platform requires '4102'.
    (CNV) WARN: dbcodepage rectified to required value.
    It seems R3load has corrected the dbcodepage value for me.
    I also saw a post on SDN System Copy Error while exporting ABAP where Markus Doehr  has replied stating that if Unicode is selected before starting to export, the correct codepage should be automatically selected.
    I would like to know if anyone else has encountered a similar problem?
    If yes, did you face any further issues once SAP was up after the ABAP import?
    Thanks.
    Regards,
    Kailash

    > SAPINST is now performing the ABAP load and seems to be running well. However, Now I notice the following messages in the <package>.log files:
    >
    (DB) INFO: connected to DB
    > (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    > (CNV) WARN: you set dbcodepage '1100' but platform requires '4102'.
    > (CNV) WARN: dbcodepage rectified to required value.
    >
    > It seems R3load has corrected the dbcodepage value for me.
    Correct.
    > If yes, did you face any further issues once SAP was up after the ABAP import?
    The data will be imported correctly because the correct codepage was used.
    Markus

  • Import running Very Slow!!!

    Hi Guys,
    This is in sequence with my first two posts...i'lll explain the whole scenario....
    I have a 44 GB table on an Oracle DB 9.2.0.8. I first tried to truncate it but it was taking huge amount of time...
    So, i truncated the table with:-
    SQL> Truncate table TABLENB REUSE STORAGE;
    After this i tried to Drop the table and it took approx 16-18 hrs to drop it. Now, i have started a import of the table using following command:-
    imp schema/passwd
    file=/oracle/XX/97/imp/TABLENB.1.exp,/oracle/XX/98/imp/TABLENB.2.exp,/oracle/XX/99/imp/TABLENB.3.exp log=/oracle/XX/97/exp/TABLENB.imp.log tables=TABLENB feedback=10000 indexes=N ignore=Y
    It has taken 16 hrs till now and when i run the following query the output is as follows:-
    SQL> select extents from dba_segments where segment_name='TABLENB';
    EXTENTS
    12450
    Initially the table had about 1 million extents....
    Can somebody tell, is dere any way i can speed up the import process or is dere any lock on the table which is making the import slow????
    Regards,
    Nick.
    Message was edited by:
    Nick-- wud b DBA

    Yeah Justin, u've recalled correctly.........
    Unfortunately, as per the Pre-plan (Assigned to us by
    someone else), we are importing back into the
    Dictionary Managed Tablespace....... :-(I'd suggest talking to that "someone else" and figuring out why this is being done. Dropping a 1 million extent table from a DMT in 9.2 only to import that same table back into a DMT without even fixing the underlying extent allocation issue is a rather unfortunate plan. At some point, the right answer has to be to fix the plan rather than continuing to slog forward with a poorly conceived plan.
    Do u have some suggestion for us so that the import
    can be made faster if possible... or simply we have
    to sit and wait......Quoting from my earlier reply-- "It would almost certainly be more efficient to pre-create the table with more appropriate extent sizes and then to import the data into that existing table"
    Justin

Maybe you are looking for