Export Import with different tablespaces

Does anyone know if there is a way to export from one database (creating a dmp file) and then importing into another database with different tablespaces? I have tried this and get this error:
ORA 959. It complained that the tablespace doesnt exist (which it doesnt). Is there a way I can change the export or import parameters to avoid this and just use the default tablespaces?
I may well be missing the point here so please feel free to tell me I am being a fool.
Thanks
Johan

Example. All these tables are from the same schema with the same tablespace specified in the dmp file. There are many more and 90 % fail but not all.
importing SCHEMA1 objects into SCHEMA2
IMP-00017: following statement failed with ORACLE error 959:
"CREATE TABLE "ACCOUNT_RPRT_NOT_TOBE_PUBLISH" ("O__NUM" CHAR(13) NOT NULL EN"
"ABLE, "O__ST" NUMBER(4, 0) NOT NULL ENABLE, "STEP_COUNTER" NUMBER(7, 0), "S"
"TATUS" NUMBER(1, 0), "RETRY_COUNTER" NUMBER(5, 0), "RESTART_COUNTER" NUMBER"
"(5, 0), "PID" NUMBER(3, 0), "OBJ_LOCK" VARCHAR2(10), "MYFILE" VARCHAR2(200)"
", "LONG_FIELD" CLOB, "LAST_SELECT_B_S" VARCHAR2(250), "LAST_SELECTION" VARC"
"HAR2(250), "L_EXECUTION_CTRL" CHAR(13), "ID" NUMBER(6, 0), "ERROR_COUNTER" "
"NUMBER(7, 0), "CREATION_TIME" NUMBER(5, 0), "CREATION_DATE" NUMBER(6, 0), ""
"COMPLETION_TIME" NUMBER(5, 0), "COMPLETION_DATE" NUMBER(6, 0), "COMMIT_COUN"
"TER" NUMBER(5, 0)) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(I"
"NITIAL 65536 FREELISTS 1 FREELIST GROUPS 1) TABLESPACE "AIA_DATA_T_256K" LO"
"GGING NOCOMPRESS LOB ("LONG_FIELD") STORE AS (TABLESPACE "AIA_DATA_T_256K""
" ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10 NOCACHE STORAGE(INITIAL 65"
"536 FREELISTS 1 FREELIST GROUPS 1))"
IMP-00003: ORACLE error 959 encountered
ORA-00959: tablespace 'AIA_DATA_T_256K' does not exist
. . importing table "ACTUARIAL_RPT_CNTR" 0 rows imported
. . importing table "ACTUARIAL_RPT_CVRG" 0 rows imported
. . importing table "ALIS_CANCEL_BILLING" 2799 rows imported

Similar Messages

  • Perform Client import/export SCC8 with different release component between server

    Dear All
    Isn't possible to perform Client import/export SCC8 with different release component between server.?
    Currently the condition of between two system as follows
    Source Server     : SAP ECC6.0, Component SAP_APPL, release 602 level 16
    Target Server     : SAP ECC6.0, Component SAP_APPL, release 600 level 24.
    This problem happens due we was unable to downgrade the release and patch the latest support pack of SAP_APPL reelease 600.
    Thank You, your help is much appreciated.

    No..

  • Export schema and import with different name

    Hi ,
    I need your assistance guys,
    I need to export a schema from a database and then import it with different name to another database. How can I do that?
    I export it with the following command:
    exp userid=system/PW file=May_02_Export.dmp log=May_02_Export.log owner=schema_name statistics="none"
    Now I want to import it but with different name (schma_name).
    Regards

    Did you try FROMUSER and TOUSER option ?
    E:\oracle\product\10.2.0\db_1\install>sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat May 2 20:01:09 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area  167772160 bytes
    Fixed Size                  1247900 bytes
    Variable Size              71304548 bytes
    Database Buffers           92274688 bytes
    Redo Buffers                2945024 bytes
    Database mounted.
    Database opened.
    SQL> create user fromuser identified by fromuser;
    User created.
    SQL> grant resource, create table, create session to fromuser;
    Grant succeeded.
    SQL> create user touser identified by touser;
    User created.
    SQL> grant resource, create table, create session to touser;
    Grant succeeded.
    SQL> conn fromuser/fromuser
    Connected.
    SQL> create table export_table(a char);
    Table created.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    E:\oracle\product\10.2.0\db_1\install>exp fromuser/fromuser file=e:\a.dmp
    Export: Release 10.2.0.1.0 - Production on Sat May 2 20:03:06 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user FROMUSER
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user FROMUSER
    About to export FROMUSER's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export FROMUSER's tables via Conventional Path ...
    . . exporting table                   EXPORT_TABLE          0 rows exported
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully without warnings.
    E:\oracle\product\10.2.0\db_1\install>imp help=y
    Import: Release 10.2.0.1.0 - Production on Sat May 2 20:03:47 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    You can let Import prompt you for parameters by entering the IMP
    command followed by your username/password:
         Example: IMP SCOTT/TIGER
    Or, you can control how Import runs by entering the IMP command followed
    by various arguments. To specify parameters, you use keywords:
         Format:  IMP KEYWORD=value or KEYWORD=(value1,value2,...,valueN)
         Example: IMP SCOTT/TIGER IGNORE=Y TABLES=(EMP,DEPT) FULL=N
                   or TABLES=(T1:P1,T1:P2), if T1 is partitioned table
    USERID must be the first parameter on the command line.
    Keyword  Description (Default)       Keyword      Description (Default)
    USERID   username/password           FULL         import entire file (N)
    BUFFER   size of data buffer         FROMUSER     list of owner usernames
    FILE     input files (EXPDAT.DMP)    TOUSER       list of usernames
    SHOW     just list file contents (N) TABLES       list of table names
    IGNORE   ignore create errors (N)    RECORDLENGTH length of IO record
    GRANTS   import grants (Y)           INCTYPE      incremental import type
    INDEXES  import indexes (Y)          COMMIT       commit array insert (N)
    ROWS     import data rows (Y)        PARFILE      parameter filename
    LOG      log file of screen output   CONSTRAINTS  import constraints (Y)
    DESTROY                overwrite tablespace data file (N)
    INDEXFILE              write table/index info to specified file
    SKIP_UNUSABLE_INDEXES  skip maintenance of unusable indexes (N)
    FEEDBACK               display progress every x rows(0)
    TOID_NOVALIDATE        skip validation of specified type ids
    FILESIZE               maximum size of each dump file
    STATISTICS             import precomputed statistics (always)
    RESUMABLE              suspend when a space related error is encountered(N)
    RESUMABLE_NAME         text string used to identify resumable statement
    RESUMABLE_TIMEOUT      wait time for RESUMABLE
    COMPILE                compile procedures, packages, and functions (Y)
    STREAMS_CONFIGURATION  import streams general metadata (Y)
    STREAMS_INSTANTIATION  import streams instantiation metadata (N)
    The following keywords only apply to transportable tablespaces
    TRANSPORT_TABLESPACE import transportable tablespace metadata (N)
    TABLESPACES tablespaces to be transported into database
    DATAFILES datafiles to be transported into database
    TTS_OWNERS users that own data in the transportable tablespace set
    Import terminated successfully without warnings.
    E:\oracle\product\10.2.0\db_1\install>imp system/oracle fromuser=fromuser touser=touser file=e:\a.d
    Import: Release 10.2.0.1.0 - Production on Sat May 2 20:04:20 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V10.02.01 via conventional path
    Warning: the objects were exported by FROMUSER, not by you
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    . importing FROMUSER's objects into TOUSER
    . . importing table                 "EXPORT_TABLE"          0 rows imported
    Import terminated successfully without warnings.
    E:\oracle\product\10.2.0\db_1\install>sqlplus touser/touser
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat May 2 20:04:36 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> desc export_table
    Name                                      Null?    Type
    A                                                  CHAR(1)
    SQL>HTH
    Aman....

  • Portal Export Import with DB on different OS

    Hi All,
    I have a quick question about exporting the OracleAS Portal Metadata Repository database. Our source DB is on a different OS to our target DB.
    We are going to apply the 10.1.2.3 patch and associated portal export/import patches to both nodes (from note 263995.1).
    Our understanding was that we would use the method described in Chapter 10 of the Portal 10.1.4 Admin Guide (http://download.oracle.com/docs/cd/B14099_18/portal.1014/b19305/cg_imex.htm).
    However, according to metalink note#276620.1, because our source and target OS are different, we should use the database export/import methodology that is described in Chapter 11 of the Application Server 10.1.2 Admin Guide (http://download.oracle.com/docs/cd/B14099_18/core.1012/b13995/prodtest.htm).
    Could anyone tell me which way is better, we would prefer to use the database export/import method, has anyone tried this and what are their experiences.
    Regards,
    Tim.

    kirwantd wrote:
    We are going to apply the 10.1.2.3 patch and associated portal export/import patches to both nodes (from note 263995.1).
    Our understanding was that we would use the method described in Chapter 10 of the Portal 10.1.4 Admin Guide (http://download.oracle.com/docs/cd/B14099_18/portal.1014/b19305/cg_imex.htm).
    However, according to metalink note #276620.1, because our source and target OS are different, we should use the database export/import methodology that is described in Chapter 11 of the Application Server 10.1.2 Admin Guide (http://download.oracle.com/docs/cd/B14099_18/core.1012/b13995/prodtest.htm).
    Could anyone tell me which way is better, we would prefer to use the database export/import method, has anyone tried this and what are their experiences.
    Regards,
    Tim.As far as your referred Metalink note is concerned, it gives you three options to move your repository with if you are working with 10.1.4 Portal.
    It's a difference of can, should and must.
    - It only shows ability to use three options ( can );
    - on the whole, it does not give preferences for any method ( should );
    - nor does it put a requirement for any single option ( must ).
    ( the only requirement/prohibition is for the option 2 which is not supported ).
    we have used the first three methods given on the note (yes, we also tried 2; this note came later). 1 is what we use regularly for transports between environments; and 3 we use for environment staging (as given in chap 11 of pt. 3). both can be messy with a large repository (we do so for about ~400 GB) repository. but following that supportability guide (Metalink Note 333867.1), method 1 works too.
    hope that helps!
    AMN

  • SAPScript: export print form and import with different name?

    Hi!
    I need to export print form from one system and import it with different name to other system.
    For this I run RSTXSCRP but the problem is that when I spefify different name for a form while importing, it gives an error...
    I tried to edit exported file before importing changing form name inside a file, but this not helped...
    Any ideas?
    Will reward,
    Mindaugas

    thanks for input, but I probably do not understand what you mean...
    here is what I need:
    for example: if I have ZNEWFORM in system1, then I need to export it from system1 and to import to system2 with form name ZNEWFORM_ZZ... is it possible?
    thanks again,
    M.

  • Import to different tablespace

    Hi all..
    I created dump file in one database with tablespace1 in Oracle 10g XE using expdp
    and
    now i want to import that dump file in another database with different tablespace2 name.
    What is the option for this...?
    Thanks in advance
    Pal

    Change the default tablespace of the user, under which the dump is to be imported, to a different tablespace.
    Once importing is done, you can restore the tablespace.

  • Export / Import with FULL=Y

    Hello DBA's,
    after consulting several thread on exp/imp with the option full=y the doubt that I have left is when using imp with full=y ignore=y in a new data base, the data base obtained will be equal to the data base from which export with full=y became. Thanks for its answers.

    export full=y
    will export all the user ,roles,tablespace creation scripts,tables all the datadictionary views
    for example if u connect the databse with single user try to get the privileges from the existing Db and then
    create the database in the new server
    create users and grant privileges before import;
    then import with fromuser= ,touser
    if you issues FULL=y
    it will start creating all the system ,index and all the other tablespaces provided it should have the same directories as it is in current DB
    to avoid create the dataabse ,tablespace users then import with fromuser,touser option
    thanks

  • Why are my HD videos all importing with different resolutions?

    Hi, I tried looking through like 10 pages of discussions on here and didn't see anybody else having this problem.
    I have a Canon Vixia HF200, I keep the settings on MXP (highest quality 1920 x 1080). Every time I log and transfer my videos they import at different resolutions (everything from the same day will be the same), some of them come in as 1440 x 1080, 720 x 480, etc, when they should all be 1920 x 1080.
    So, since some of them ended up being a completely different aspect ratio, I went into Motion>Distort and changed them all to 1920 x 1080, and I thought it was fine, but now I'm noticing that some of the videos look really out of focus (it seems like they get more out of focus every time I open it), so I'm thinking I probably shouldn't have stretched them....
    I checked the original videos in the browser and they all say 1920 x 1080 now, when I watch them in the viewer, they actually look like good HD videos, but in the canvas they're out of focus...
    I'm also working with multiple sequences, and when I copy videos from one sequence to another, it changes the resolution/aspect ratio/scale again, and becomes more blurry when I try to fix it.
    So basically, I have a huge mess. I'm working on editing a documentary that I'm making and now most of the video looks bad and I'm not sure how to change it back. I even tried starting a new project and importing the original videos, but they don't seem to have the original quality.
    Anybody know how I can either fix this or somehow replace the clips in the sequence with the originals in the browser to at least get some quality back?
    Also, a lot of the time when I render, I come back to the computer and it says something like "Error: Illegal (something) render failed" and completely loses the rendering that it spent a long time doing.
    I appreciate any help.
    Lisa

    Hi Lisa,
    Your 1920x1080 clips most likely import at their normal frame size, and then you placed them in the wrong sequence. Make sure your +File > Easy Setup+ is set to *Apple Intermediate Codec 1920x1080i60* before you create a new sequence.

  • Export/Import with apps user or EUL schema owner ?

    Hi,
    I am working with a migration plan to move Discoverer 9 to Discoverer 10.
    It is an apps mode EUL, where business areas and workbooks have been granted to Apps Users & Responsibilities.
    Customer has only maintained the EUL with the database user of the EUL owner.
    What is recommended for exporting/importing the EUL from 9 to 10.
    To connect to Administrator as the EUL owner, or to connect as an apps user ( SYSADMIN ? )
    Will all the grants to apps users/responsibilities work when importing as schema owner ?
    I tried to create a entire EUL export file connected as EUL owner, and for the workbooks the export log contained :
    1234#.Workbook name1
    2345#.Workbook name 2
    1234 is the user_id for the workbook owner ( All workbooks have been created by an apps user )
    Will the import process manage to convert this user_id, and set the correct owner for the imported workbooks ?
    ( I will use the option Only take ownership if original owner not found )
    I am not sure, but I think I have seen the following syntax in other projects when exporting an apps mode EUL
    SYSADMIN.Workbook name 1
    SYSADMIN.Workbook name 2

    >
    What is recommended for exporting/importing the EUL from 9 to 10.
    To connect to Administrator as the EUL owner, or to connect as an apps user ( SYSADMIN ? )
    Will all the grants to apps users/responsibilities work when importing as schema owner ?
    Hi,
    The best that i know is that you should export using the DB user so that you will not have problem with workbooks or BA that you are not granted for (or any other grants or privileges).
    The import should be done using the APPS user (the super user you use).
    That way if you import a workbook that the owner will not be found then you will get the ownership and you can after migration deal with it.
    If you'll do that with the DB (EUL owner) user after migration you will not have access to those workbooks.
    Any way about the workbooks i suggest you'll save them as DIS files for cases that the import of the workbooks or the owner association for them fail.

  • How to export/import Agenda different versions contacts  .

    I bought a MacBook Pro Os X version 10.8.2 with Agenda version 7.1 (1167) and I am trying to export contacs to a MacBook OS X version 10.7.4 with Agenda version 6.1.2 (1090).
    Using standard procedure export/import menus does not work.
    Any suggestions.
    THANKS

    I bought a MacBook Pro Os X version 10.8.2 with Agenda version 7.1 (1167) and I am trying to export contacs to a MacBook OS X version 10.7.4 with Agenda version 6.1.2 (1090).
    Using standard procedure export/import menus does not work.
    Any suggestions.
    THANKS

  • RFC export variable with different output length.

    I have an RFC returning language from R/3 with Datatype SY-LANGU. When I run RFC from R/3, I see language being  returned in two chars. But  I get only one char when I run  the same from Web Dynpro.
    When  I look at Web Dynpro model dictionary,  It is imported  with fixed length '1" and external length as "2".
    From ABAP Dictionary it is of  one char, But output length is two chars with some conversion routine.
    Is it possible to get language output in web Dynpro with two chars with out changing the signature of the RFC?

    Hi,
    I think you can achive this.
    You can involve value attribute context for this tranformation.
    Ashutosh

  • Export and Import with different environments

    Gurus,
    Thanks for spending your time to read this thread. I have a table with say 100 rows in development area. I need only 10 rows to be moved to Quality. For example, user/pwd@D1 is the user login detail during export.
    user/pwd@F1 should be the login for Import.
    Is that possible?
    Here D1 and F1 are tow different Oracle databases altogether. The table definitions in both the databases are same. And for your information, the schema names are same in bothe the dabatases (user).
    Please help me.
    Thanks in advance
    DRK

    Gurus,
    Thanks for spending your time to read this
    thread. I have a table with say 100 rows in
    development area. I need only 10 rows to be moved to
    Quality. For example, user/pwd@D1 is the user login
    detail during export.
    user/pwd@F1 should be the login for Import.
    Is that possible?
    Here D1 and F1 are tow different Oracle databases
    altogether. The table definitions in both the
    databases are same. And for your information, the
    schema names are same in bothe the dabatases (user).
    Please help me.
    Thanks in advance
    DRK10 rows to be moved to Quality which 10 rows,why import export why not db link
    you can use db link to move across data within diffrent database.db link gives you
    specific visibility one database objects to anothre database object.
    Khurram

  • Importing to different tablespace with no quota

    Hi,
    I am using Oracle 10.2.0.2.0 on Sun Solaris server.
    I have received a export dump file of user "SUN"
    The "SUN" user is using tablespace "SUN_DATA".
    Here in my database, I have created a new tablespace "SUN_NEW_DATA"
    and created a new user "SUN_NEW".
    I have granted quota unlimited on SUN_NEW_DATA to "SUN_NEW" user.
    I have not given any quota on "SUN_DATA" to "SUN_NEW" user.
    Though my database is also having "SUN_DATA" tablespace which is being used by other users.
    Now when I give the command :
    imp sun_new/sun_new file=sun_exp.dmp log=sun_exp.log fromuser=sun touser=sun_new
    I am seeing that all the tables are created in "SUN_DATA" tablespace.
    Can someone explain me why the import have created objects in "SUN_DATA" tablespace though
    the user "SUN_NEW" does not have any quota on that tablespace.
    Thanks & Regards
    Arun Tayal

    And I think the DEFAULT TABLESPACE at the database level is defined as SUN_DATA.
    --Luckys.                                                                                                                                                                                           

  • Export/import with objects in another schema

    In 9.2
    I created two users: `live` and `world`
    `live`> create type nam as object (txt varchar2) not final;
    `system`> grant under any type to world;
    `world`> create type nam_world under live.nam (txt2 varchar2);
    and
    create table nams of nam_world;
    and new row
    insert into nams values ('qwerty', 'ytrewq');
    I build dump file:
    exp system/manager FILE=live_world.dmp OWNER=live,world
    All this successfully!!!
    At another server (also 9.2) this export session terminated with errors:
    imp SYSTEM/manager FILE=live_world.dmp FROMUSER=live,world TOUSER=live,world
    Not help parameter IGNORE=Y
    Not help parameter TOID_NOVALIDATE=(live.nam)
    In any case: "Skipping table "WORLD"."NAMS" because object type "LIVE"."NAM" cannot be created or has different identifier"
    General effect, what import simply not visible type live.nam
    How import tables with objects in another users schema?
    Please, help me.

    Hi Vishwanath,
    You can export the objects as TPZ's
    go to Tools---> Export configuration objects, to export them, and import configuration objects to reimport them.
    cheers
    Prashanth

  • Unable to Export/Import between different CPS Enviornments( Test& QAS)

    HI all,
    i am facing some issues while doing export and import of Objects from one CPS host to another host.
    I did see another thread mentioning the same but stilll was not clear.
    I am trying to Export Application from one host to another host.
    My Case:
    Steps taken to Export:
    >selected SAP System in Application under SAP and do Export Tree . and Export is successfull. Copied the *.car file localy to desktop.
    I go to another CPS host and do Import Rule Set . I dont put any rule there but just submitt the Jobs. It asks to Upload the file to server. give path to *.car file , Once done. Import Job Runs but goes to error status.
    I have attached the logs.
    ERROR 2011-07-22 15:31:40,977 Africa/Harare [Redwood Job Thread Pool: GLOBAL.System.System worker 0] job.System_Import_Archive.2835 - Import failed, no objects have been imported.
    -- JOB RUN STACK TRACE --
    JCS-113051: Exception while parsing source jar:file:/C:/usr/sap/QRP/JC00/j2ee/cluster/server0/scheduler/JOB_2835carin.car.car!/SAPSystem/GLOBAL.QSR.xml at line 22: JCS-113004: No such field LoadThreshold on object type SAPSystem. See cause for further information
         at com.redwood.scheduler.model.imprt.BaseImporter.importObject(BaseImporter.java:297)
         at com.redwood.scheduler.model.imprt.ImportScanner.importObject(ImportScanner.java:52)
         at com.redwood.scheduler.model.imprt.BaseImporter.importObject(BaseImporter.java:185)
         at com.redwood.scheduler.model.imprt.CronacleArchiveReader.scanArchive(CronacleArchiveReader.java:111)
         at com.redwood.scheduler.model.imprt.CronacleArchiveReader.importAll(CronacleArchiveReader.java:84)
         at com.redwood.scheduler.system.jobs.CronacleArchiveImport.runInternal(CronacleArchiveImport.java:396)
         at com.redwood.scheduler.system.jobs.CronacleArchiveImport.run(CronacleArchiveImport.java:192)
         at com.redwood.scheduler.system.jobs.CommonSystemJob.execute(CommonSystemJob.java:53)
         at com.redwood.scheduler.systemjobservice.impl.JobWorker.doWork(JobWorker.java:242)
         at com.redwood.scheduler.infrastructure.workqueue.Worker.run(Worker.java:74)
    I do feel i have to use import Rule . But what feild do i need to include to replace with as per new host.
    Seconldy when i try to export EVENTS. I am able to do successfully. by giving an export rule for specfic events.
    But when i import it ,, i get in issues.
    Error Log:
    INFO  2011-07-22 10:06:24,091 Africa/Harare [Redwood Job Thread Pool: GLOBAL.System.System worker 0] job.System_Import_Archive.2685 - Starting to import all definitions from archive.
    INFO  2011-07-22 10:06:24,163 Africa/Harare [Redwood Job Thread Pool: GLOBAL.System.System worker 0] job.System_Import_Archive.2685 - Scanning : jar:file:/C:/usr/sap/QRP/JC00/j2ee/cluster/server0/scheduler/JOB_2685carin.car.car!/EventDefinition/GLOBAL.QFS_Detect_Z_C6_ABSA_119020.xml
    ERROR 2011-07-22 10:06:24,662 Africa/Harare [Redwood Job Thread Pool: GLOBAL.System.System worker 0] job.System_Import_Archive.2685 - Unable to parse input source: jar:file:/C:/usr/sap/QRP/JC00/j2ee/cluster/server0/scheduler/JOB_2685carin.car.car!/EventDefinition/GLOBAL.QFS_Detect_Z_C6_ABSA_119020.xml line 9
    I guess iagain i should be using import rule correctly.
    what feilds should i be replacing in import rule. is it going to be Application ( as feild ) or partition or anything else..
    Please advise if i am doing something worng.
    Thank You
    Deepak

    Hi ,
    There was version mismatch between Target CPS host and Sources CPS Host.
    I bought the Sources CPS host version same as Target CPS version (.Build: M33.21-49924 ). But stil when i do the Applciation Export from sourcs CPS to Target CPS i am still receiving same error as  below:
    INFO  2011-07-25 10:12:37,009 Africa/Harare [Redwood Job Thread Pool: GLOBAL.System.System worker 0] job.System_Import_Archive.3913 - Starting to import all definitions from archive.
    INFO  2011-07-25 10:12:37,055 Africa/Harare [Redwood Job Thread Pool: GLOBAL.System.System worker 0] job.System_Import_Archive.3913 - Scanning : jar:file:/C:/usr/sap/QRP/JC00/j2ee/cluster/server0/scheduler/JOB_3913carin.car.car!/JobDefinition/GLOBAL.Z_SRM-220_I_POW_UPD_ERP_DAT_POWL.xml
    INFO  2011-07-25 10:12:37,057 Africa/Harare [Redwood Job Thread Pool: GLOBAL.System.System worker 0] job.System_Import_Archive.3913 - Scanning : jar:file:/C:/usr/sap/QRP/JC00/j2ee/cluster/server0/scheduler/JOB_3913carin.car.car!/Application/GLOBAL.ESKOM_QUALITY_SRM_SYSTEM.xml
    ERROR 2011-07-25 10:12:37,069 Africa/Harare [Redwood Job Thread Pool: GLOBAL.System.System worker 0] job.System_Import_Archive.3913 - Unable to parse input source: jar:file:/C:/usr/sap/QRP/JC00/j2ee/cluster/server0/scheduler/JOB_3913carin.car.car!/Application/GLOBAL.ESKOM_QUALITY_SRM_SYSTEM.xml line 7
    JCS-113007: Cannot set field User/Role on Grant on Application <Name Not Set> to <Grantee Subject Not Set>:<Grantee Subject Not Set> to Subject:Role.Everyone
    Please advice.
    Regards
    Deepak

Maybe you are looking for