Success of import/ export???

Hey all!
I am going to do an export and import of a tablespace using exp and imp utilities on 10gR2.
Can anybody guide me, what all things do i need to check?
also how can i verify that the import done on the tablespace was a success? (logically everygthing is present in the imported tablespace , ...objects)?
thanks

hi all. !!
I have a dmp without errors and I send it to other
person and He have errors during the import proccess
like missed packages
can be the cause a different character set? or
diferent version of export utility?
Thanks a lot.
Sorry by my english.You might want to post the actually error message you got, so we can help to take a look.

Similar Messages

  • Import/export not working as expected

    Following is my code.
    REPORT  Z_DEX_SS_CUSTOMER_CREATE.
    tables:zcustomer,ztransform.
    data:itab_bapiname like ztransform occurs 10 with header line.
    data:gs_return like bapireturn1,
         gs_customerno like bapikna103-customer,
         gs_bapikna101_1 like table of bapikna101_1 with header line,
         gs_bapikna101_1_gwa like bapikna101_1,
         gs_bapikna105 like table of bapikna105 with header line,
         gs_bapikna105_gwa like bapikna105,
         gs_bapikna106 like table of bapikna106 with header line,
         gs_bapikna106_gwa like bapikna106,
         gs_bapikna102 like table of bapikna102 with header line,
         gs_bapikna102_gwa like bapikna102.
    data:offset_data(10) value 0.
    *Dynamic program table definition
    data: begin of dyntabl occurs 10,
          line(200),
          end of dyntabl.
    data:dynlength(3).
    Temporary spec table
    data:begin of spec_initial occurs 10,
         row(150),
         end of spec_initial.
    Specification table decleration
    data:begin of spec occurs 10,
         fieldname(20),
         field_type(20),
         field_length(20),
         field_offset(20),
         sap_fieldname(30),
         end of spec.
    data:cust_bapiname(30).
    *Temporary item data table decleration
    data:begin of temp_data_table occurs 10,
         line(3000),
         end of temp_data_table.
    *Final item data table decleration
    data:data_table like zcustomer occurs 10 with header line.
    call function 'UPLOAD'
        exporting
        filename = 'D:\SAPSWITCH\Customer files\custspec1.TXT'
        filetype = 'ASC'
       HAS_FIELD_SEPARATOR = ' '
       HEADER_LENGTH = 0
        tables
        data_tab = spec_initial
        exceptions
        file_open_error               = 2.
    loop at spec_initial.
         split spec_initial-row at ' ' into spec-fieldname spec-field_type spec-field_length spec-field_offset spec-sap_fieldname.
         append spec.
        insert into zspec_CUSTOMER values spec.
         endloop.
    *Uploading the  Data File.
         call function 'UPLOAD'
         exporting
        filename =  'D:\SAPSWITCH\Customer files\customerdata.TXT'
        filetype = 'ASC'
       HAS_FIELD_SEPARATOR = ' '
       HEADER_LENGTH = 0
        tables
        data_tab = temp_data_table
        exceptions
        file_open_error               = 2.
      Transfering values from the item data flat file to the internal table
        delete from zcustomer.
        loop at temp_data_table.
        loop at spec.
        data_tableoffset_data = temp_data_tablespec-field_offset(spec-field_length).
        offset_data = offset_data + 40.
        endloop.
        append data_table.
        insert into zcustomer values data_table.
        offset_data = 0.
        endloop.
        select * from ztransform into table itab_bapiname.
    *Moving values to the Bapi fields dynamically
    dyntabl-line = 'program zdynpro.'. append dyntabl.
    dyntabl-line = 'tables:zcustomer.'.append dyntabl.
    dyntabl-line = 'Data:itab_data like zcustomer occurs 10 with header line.'.append dyntabl.
    dyntabl-line = 'Data:gs_bapikna101_1 like table of bapikna101_1 with header line,'.append dyntabl.
    dyntabl-line = 'gs_bapikna105 like table of bapikna105 with header line,'.append dyntabl.
    dyntabl-line = 'gs_bapikna106 like table of bapikna106 with header line,'.append dyntabl.
    dyntabl-line = 'gs_bapikna102 like table of bapikna102 with header line,'.append dyntabl.
    dyntabl-line = 'offset_data(10) value 0.'.append dyntabl.
    dyntabl-line = 'select * from zcustomer into table itab_data.'.append dyntabl.
    dyntabl-line = 'LOOP AT ITAB_data.'.append dyntabl.
    loop at spec.
    loop at itab_bapiname where sap_field = spec-sap_fieldname.
    cust_bapiname = itab_bapiname-bapi_field.
    endloop.
    dyntabl-line = cust_bapiname.
    dynlength = strlen( dyntabl-line ).
    dynlength = dynlength + 1.
    dyntabl-line+dynlength = '='.
    dynlength = dynlength + 2.
    dyntabl-linedynlength = 'itab_dataoffset_data(40).'.
    *dynlength = strlen( dyntabl-line ).
    *dyntabl-line+dynlength = '.'.
    append dyntabl.
    dyntabl-line = 'offset_data = offset_data + 40.'.append dyntabl.
    endloop.
    dyntabl-line = 'offset_data = 0.'.
    dyntabl-line = 'append gs_bapikna105. append gs_bapikna106. append gs_bapikna102.'.append dyntabl.
    dyntabl-line = 'endloop.'.append dyntabl.
    dyntabl-line = 'export gs_bapikna101_1 gs_bapikna105 gs_bapikna106 gs_bapikna102 TO MEMORY ID ''DEX''.'.append dyntabl.
    insert report 'zdynpro' from dyntabl.
    submit zdynpro and return.
    *LOOP AT DYNTABL.
    WRITE DYNTABL.
    ENDLOOP.
    import gs_bapikna101_1 gs_bapikna105 gs_bapikna106 gs_bapikna102 from MEMORY ID 'DEX'.
    loop at gs_bapikna101_1 from 1 to 1 into gs_bapikna101_1_gwa.
    endloop.
    loop at gs_bapikna105 from 1 to 1 into gs_bapikna105_gwa.
    endloop.
    loop at gs_bapikna102 from 1 to 1 into gs_bapikna102_gwa.
    endloop.
    The section under consideration ive made bold and italised it.
    Im calling another program dynamically and in that program im exporting some date to the sap memory.However when i import it from my program im unable to view the values. Why is that?

    Hi Friend,
    Below is an example for successfully using IMPORT and EXPORT:
    IMPORT ws_samepo TO loc_x FROM MEMORY ID 'SAMEPO'.*
    EXPORT ws_samepo = loc_x TO MEMORY ID 'SAMEPO'.
    Pleaes use same variable name for IMPORT and EXPORT.
    Hope it will help you.
    Regards
    Krishnendu

  • Application import/export failing, hopefully a simple one though

    hi all,
    i'm very new to oracle and am trying to get going with xe. i'm working between work and home and want to be able to transport wherever i'm at to work/home - so i thought the application import/export function would be the best way? first of all, is it?
    if so - i keep getting the
    failed to parse SQL query:
    ORA-00942: table or view does not exist
    error
    i'm running the same versions of oracle, on the same platforms (Application Express 2.1.0.00.39, winXPpro all service packed up). both my users have dba roles and the apps work fine on the machines i created them on. the import and install processes claim to be successful and the error only comes up when i try to log in to the application. any ideas?
    btw - the apps are just simple tests, dependences etc with a couple rows in each table]
    any help be much appreciated even if its "go read this!" as i've googled away & got not much....
    cheers!

    Your problem is likely that in your office you do not have the tables required by your program. The export does not include your tables. You have to create them yourselves

  • Using XML Import/Export in Transport Connection

    Hi, I was investigating the feasibility of copying a query definition from one BW system to another using the XML Import/Export functionality in Transport Connection.  This is not to replace our current transport process across the landscape (Dev -> QA -> Prod), but merely just looking at possibilities for end users who develop queries in QA & then recreate them in Prod.
    My question is: has anyone worked with the XML Export/Import for types Queries & Query Elements?  I was trying this out between a Dev and Sandbox system and only had limited success.  I was able to take a small query and perform the Export to a local .xml file without much difficulty.  But when I try to do the Import, my query never shows up.  The Import function shows a green light, but I get a couple of error messages on the Import such as the following:
    ==========================================================
    SAP object 3WROG4HZ3NKP1PIYHCR1H24CQ () cannot be imported
    Diagnosis
    You attempted to import SAP object 3WROG4HZ3NKP1PIYHCR1H24CQ of type into the system via the XMI interface. However, you are not allowed to import SAP objects.
    System response
    The object was ignored during the import.
    Note: It can be that the import is incomplete when the required SAP objects are still not active in the system.
    Procedure
    Install the specified objects from Business Content. Only import the metadata afterwards.
    =========================================================
    The portion returned for Saving and Activating returns green lights.  The two sample objects mentioned appear to just be custom InfoObjects used in my query & don't look to be any different than others that work OK. 
    Just curious if anyone else has worked with this and could help advise. 
    Thanks...  Jody

    This is an old subject, but I think XML import only works for datamodeling objects like InfoObjects, InfoCubes, and ODS objects. If you try to export a query, and open the XML file in a text editor, there is not enough information (in my opinion) to build the query. As an example you don't see how key figures are to be displayed, filter or free characteristics.
    However, when an InfoObject is collected, you get all the attributes, texts in all languages.
    If anyone has more insight, please enlighten us.
    -John

  • Import/Export Single Object

    Hi Folks,
    i tested imort/export for SWCV it is working fine...but when i m trying it for single object like namespace etc...
    I face the problem while exporting/importing a namespace in IR.
    1) I exported a namespace using menu Tools->Export design Objects
    2) Selected the software Component and Mode as using file system in the wizard
    3) Selected my namespace which i want to export
    got the message exported successfully.
    Export Path: D:\usr\sap\PL2\SYS\global\xi\repository_server\export
    File: XI3_0_TEST_2.0_of_xxx.com-nsps.tpz
    <b>I tried to import the same namespcae back into same IR.</b>
    and followed these step.
    1) Copied the .tpz file into import folder.
    2) then using the menu tool->import design Objects i selected my .tpz file
    3) Got the following msg.
    Import source XI3_0_TEST_2.0_of_xxx.com-nsps.tpz imported successfully. All imported design objects integrated successfully 3 import object(s) imported successfully 
    Import file moved to importedFiles\XI3_0_TEST_2.0_of_xxx.com-nsps_2007-02-13_02-41.tpz
    <b>But i was not able to see the imported namespace.</b>
    Also followed this document
    http://help.sap.com/saphelp_nw04/helpdata/en/a8/5e56006c17e748a68bb3843ed5aab8/content.htm
    Can u guide me plz.
    Sachin

    <b>Sreeram</b>
    I m not trying to move it form DEV to QA.
    I m exporting the namespace from DEV. say http://abc.com/xi/test of SWCV  Test of abc.com.
    and then i m trying to import it back to Same DEV box.
    I m getting the sucessfully imported message but not able to see the namespace.
    I tried deleting the namespace after exporting and then importing.
    But still i can't see it.
    However in cache notification and Tools->Find Transfer it is showing that it is sucessfully imported.
    I think it might be the issue with active version... can u help me out.
    <b>Chandra</b>
    i m not changing the name of anything. i got the above message as well, but not able to see the imported object.
    Sachin
    Message was edited by:
            Sachin Dhingra

  • Questions on Import/Export Personalizations

    Hi,
    We are on 11.5.10 CU3. We have dozens of personalizations in Dev. I understand that Functional Administrator Import/Export tool can be used to transfer them from Dev to production. I am facing some issues when I try that.
    1. I exported a personalization in Dev to the same instance java/custom. It created the directory structure java/custom..../site/0/ReqSummaryPG.
    2. I imported it back. This was successful.
    3. I re-imported it. It failed without an explanation for the failure. What could be the reason? Doesn't it just overrite the previous import - like when importing substituions?
    4. I copied the custom/..../site/0 to another instance and imported it there. It was successful. However I could not see the personalizations.
    5. So I checked. I realized that the directory structure was wrong. It was java/custom/apps/..../site/0
    instead of java/custom/oracle/apps/..../site/0.
    6. So I corrected the directories and re-imported. Failure like 3 above. I thought it was because of duplicate records. So i did the query select * from jdr_paths where PATH_NAME like '%ReqSummaryPG%'. I got only one record which was the seeded record. So eventhough 4 was successful there is only one record. Why?
    Do I have to bounce Apache for each separate import of the same document?
    Is there documentation on this utility with best practices? I see in the forum that no-one could successfully make this utility work.
    Any help would be appreciated. I thought this was a simple utility ...
    Thanks
    Sandeep

    Well this worked the next day! I reimported ReqSummaryPG again and it worked. I believe a few Apache bounces took place inbetween.
    We were able to export/import quite a few personalizations. However, we got it right the first time this time around
    I am still interested in knowing why a second consecutive import of the same doc doesn't work? And how to make it work? This would help in resolving issues in case of mishaps. Appreciate it if someone can provide an explanation.
    Thanks
    Sandeep

  • Java exception: Planning Data Form Import/Export Utility: FormDefUtil.sh

    Hi,
    We have the following in our environment
    Oracle 10gAS (10.1.3.1.0)
    Shared Services (9.3.1.0.11)
    Essbase Server (9.3.1.3.01)
    Essbase Admin Services (9.3.1.0.11)
    Provider Services (9.3.1.3.00)
    Planning (9.3.1.1.10)
    Financial Reporting + Analysis UI Services (9.3.1.2)
    I got the following error while using the Planning Data Form Import/Export Utility. Does anyone have any idea?
    hypuser@server01>$PLANNING_HOME/bin/FormDefUtil.sh import TEST.xml localhost admin password SamApp
    [May 6, 2009 6:25:11 PM]: Intializing System Caches...
    [May 6, 2009 6:25:11 PM]: Loading Application Properties...
    [May 6, 2009 6:25:11 PM]: Looking for applications for INSTANCE: []
    [May 6, 2009 6:25:13 PM]: The polling interval is set =10000
    Arbor path retrieved: /home/hypuser/Hyperion/common/EssbaseRTC/9.3.1
    [May 6, 2009 6:25:14 PM]: Setting ARBORPATH=/home/hypuser/Hyperion/common/EssbaseRTC/9.3.1
    Old PATH: /home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/AnalyticServices/bin:/home/hypuser/Hyperion/common/JRE-64/IBM/1.5.0/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/hypuser/bin:/usr/bin/X11:/sbin:.
    [May 6, 2009 6:25:14 PM]: Old PATH: /home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/common/JRE/IBM/1.5.0/bin:/home/hypuser/Hyperion/AnalyticServices/bin:/home/hypuser/Hyperion/common/JRE-64/IBM/1.5.0/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/hypuser/bin:/usr/bin/X11:/sbin:.
    java.lang.UnsupportedOperationException
    at com.hyperion.planning.olap.HspEssbaseEnv.addEssRTCtoPath(Native Method)
    at com.hyperion.planning.olap.HspEssbaseEnv.init(Unknown Source)
    at com.hyperion.planning.olap.HspEssbaseJniOlap.<clinit>(Unknown Source)
    at java.lang.J9VMInternals.initializeImpl(Native Method)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:187)
    at com.hyperion.planning.HspJSImpl.createOLAP(Unknown Source)
    at com.hyperion.planning.HspJSImpl.<init>(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    at com.hyperion.planning.utils.HspFormDefUtil.main(Unknown Source)
    Setting Arbor path to: /home/hypuser/Hyperion/common/EssbaseRTC/9.3.1
    [May 6, 2009 6:25:15 PM]: MAX_DETAIL_CACHE_SIZE = 20 MB.
    [May 6, 2009 6:25:15 PM]: bytesPerSubCache = 5654 bytes
    [May 6, 2009 6:25:15 PM]: MAX_NUM_DETAIL_CACHES = 3537
    Setting HBR Mode to: 2
    Unable to find 'HBRServer.properties' in the classpath
    HBR Configuration has not been initialized. Make sure you have logged in sucessfully and there are no exceptions in the HBR log file.
    java.lang.Exception: HBR Configuration has not been initialized. Make sure you have logged in sucessfully and there are no exceptions in the HBR log file.
    HBRServer.properties:HBR.embedded_timeout=10
    HBR Configuration has not been initialized. Make sure you have logged in sucessfully and there are no exceptions in the HBR log file.
    java.lang.ExceptionInInitializerError
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:205)
    at com.hyperion.hbr.api.thin.HBR.<init>(Unknown Source)
    at com.hyperion.hbr.api.thin.HBR.<init>(Unknown Source)
    at com.hyperion.planning.db.HspFMDBImpl.initHBR(Unknown Source)
    at com.hyperion.planning.db.HspFMDBImpl.initializeDB(Unknown Source)
    at com.hyperion.planning.HspJSImpl.createDBs(Unknown Source)
    at com.hyperion.planning.HspJSImpl.<init>(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    at com.hyperion.planning.utils.HspFormDefUtil.main(Unknown Source)
    Caused by: Exception HBR Configuration has not been initialized. Make sure you have logged in sucessfully and there are no exceptions in the HBR log file.
    ClassName: java.lang.Exception
    at com.hyperion.hbr.common.ConfigurationManager.getServerConfigProps(Unknown Source)
    at com.hyperion.hbr.cache.CacheManager.<clinit>(Unknown Source)
    at java.lang.J9VMInternals.initializeImpl(Native Method)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:187)
    ... 11 more
    [May 6, 2009 6:25:15 PM]: Regeneration of Member Fields Complete
    [May 6, 2009 6:25:16 PM]: Thread main acquired connection com.hyperion.planning.olap.HspEssConnection@5f0e5f0e
    [May 6, 2009 6:25:16 PM]: Thread main releasing connection com.hyperion.planning.olap.HspEssConnection@5f0e5f0e
    [May 6, 2009 6:25:16 PM]: Thread main released connection com.hyperion.planning.olap.HspEssConnection@5f0e5f0e
    [May 6, 2009 6:25:16 PM]: Need to create an Object. pool size = 0 creatredObjs = 1
    java.lang.RuntimeException: Unable to aquire activity lease on activity 1 as the activity is currently leased by another server.
    at com.hyperion.planning.sql.actions.HspAquireActivityLeaseCustomAction.custom(Unknown Source)
    at com.hyperion.planning.sql.actions.HspAction.custom(Unknown Source)
    at com.hyperion.planning.sql.actions.HspActionSet.doActions(Unknown Source)
    at com.hyperion.planning.sql.actions.HspActionSet.doActions(Unknown Source)
    at com.hyperion.planning.HspJSImpl.aquireActivityLease(Unknown Source)
    at com.hyperion.planning.HspJSImpl.reaquireActivityLease(Unknown Source)
    at com.hyperion.planning.utils.HspTaskListAlertNotifier.reaquireTaskListActivityLease(Unknown Source)
    at com.hyperion.planning.utils.HspTaskListAlertNotifier.processTaskListAlerts(Unknown Source)
    at com.hyperion.planning.utils.HspTaskListAlertNotifier.run(Unknown Source)
    [May 6, 2009 6:25:16 PM]: Fetching roles list for user took time: Total: 42
    [May 6, 2009 6:25:16 PM]: Entering method saveUserIntoPlanning
    [May 6, 2009 6:25:16 PM]: User role is:0
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HP:0005,ou=HP,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:1,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:9,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:3,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:7,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:14,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:15,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:10,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:12,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:13,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:1,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:9,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:3,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:7,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:14,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:15,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:10,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:12,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Skipping unused HUB role: native://DN=cn=HUB:13,ou=HUB,ou=Roles,dc=css,dc=hyperion,dc=com?ROLE
    [May 6, 2009 6:25:16 PM]: Hub Roles for user is:991
    [May 6, 2009 6:25:16 PM]: Exiting method saveUserIntoPlanning
    [May 6, 2009 6:25:16 PM]: Saved the user admin to Planning
    [May 6, 2009 6:25:16 PM]: Entering method persistUserChanges()
    [May 6, 2009 6:25:16 PM]: Exiting method persistUserChanges()
    [May 6, 2009 6:25:16 PM]: Before calling getGroupsList for user from CSS
    [May 6, 2009 6:25:16 PM]: After getGroupsList call returned from CAS with groupsList [Ljava.lang.String;@705c705c
    [May 6, 2009 6:25:16 PM]: Fetching groups list for user took time: Total: 4
    [May 6, 2009 6:25:16 PM]: Entering method persistGroupChanges()
    [May 6, 2009 6:25:16 PM]: Exiting method persistGroupChanges()
    [May 6, 2009 6:25:16 PM]: User synchronization of 1 user elapsed time: 81, Users: 72, Groups: 9.
    [May 6, 2009 6:25:16 PM]: Didnt add child Forms, couldnt find parent 1
    Add/Update form under form folder - Corporate
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspObject Object Type: -1 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspPDFPrintOptions Object Type: -1 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspForm Object Type: 7 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspPDFPrintOptions Object Type: -1 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspAnnotation Object Type: 14 Primary Key: 1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspAccessControl Object Type: 15 Primary Key: 50001,1454699 ]
    [May 6, 2009 6:25:21 PM]: Propegating external event[ FROM_ID: 7a7ebc1d Class: class com.hyperion.planning.sql.HspFormDef Object Type: -1 Primary Key: 1454699 ]
    Form imported complete.
    [May 6, 2009 6:25:21 PM]: Could not get HBR connection.

    Hi,
    When I run the Formdefutil command, forms were imported successfully. But I got the following message.
    Could not get HBR connection.
    What does it mean?
    Thanks & Regards,
    Sravan Kumar.

  • Automating the import / export process in 9.0.2

    In Portal 3.0.9.x the export and import were entirely command-line driven tools, so it was possible to automate the process to a certain degree.
    In 9.0.2 the import/export process is a combination of scripts and manual actions through the Portal UI to import and export the transport sets.
    Is there any way in 9.0.2 to automate this process ?

    You make me feel better. I am having THE problem. Logs say it was all a success but NOTHING is imported. I tried with portal 9.0.2.2.22 on Win2000 and now I'll try it on 9.0.2.2.14A on Sun. What did you use?

  • Memory Limit for "IMPORT/EXPORT from MEMORY ID" statement

    Hi All,
    Can anyone tell me whether there is any memory limit exists for "IMPORT/EXPORT from MEMORY ID" statement.
    Like may be we can transfer xx MB of data via this......or it is open, we can transfer any amount of data to ABAP memory via this.
    Regards
    Munish Garg

    1. Each user sessions have external sessions and each external sessions have internal sessions.
    2. The programs being executed in the internal sessions can access ABAP memory
    3.ABAP memory is a storage area for internal program variables like fields, structures, internal tables,,They can be passed  between internal sessions of an external session.
    4. you can transfer data through ABAp memory using IMPORT and EXPORT statements
    5. after IMPORT FROM MEMORY ID <id> , you can use sy-subrc to check the existance of the cluster ID. here sy-subrc is not used to check whether the Import was successful or not.

  • Import/Export App Overwrite Timing Out

    We are about to begin testing an application we've created, and need a testing environment. I have been able to successfully export an application from one server and import it to HTML DB on another, but every time I get to the screen (on the new server) where it asks me to confirm that I want to replace the already existing application, I hit the button to confirm, I wait forever as the blue bar creeps across the status bar of my browser, then I get a "Page Cannot be Displayed" error, like it's timing out or something.
    When I go back, the application appears to have installed normally and seems to work, but I am worried that because of what seemed to be the installation timing out, that there may be things that didn't quite transfer. Is this a valid concern, or should I assume that everything transferred normally?

    Murali,
    The process is actually pretty simple. In our case we had two servers, both w/ HTML DB installed. The way it basically works is that you go into the application you want to export, and you click the Export/Import link on the page. You will be taken through a simple step-by-step process by which you will ultimately just save the application somewhere as a .sql file. You will then go into HTML DB on the server where you would like the copied application to be, and click the same link, and go through a similar step-by-step process to import the application by browsing for it where it was saved when you exported it.
    A few suggestions:
    Any tables that are associated with the application will need to be recreated in your new environment. A simple way to do this is to use:
    CREATE TABLE table_name AS (
    SELECT * FROM table_name@oldserver
    for each of your tables, if there are only a few. If it is larger, you may just want to copy the entire schema over to the new server, which is what we ended up having to do. But our DBA did that, so I'm not as familiar w/ that process.
    However, if the tables have sequences associated with them they will need to be recreated on the new server as well, unless there is a way to copy them along w/ the table all at once, but as I said, we are not as familiar w/ that actual process. (You can find information on how to recreate the sequences here: https://cwisdb.cc.kuleuven.ac.be/ora10doc/server.101/b10759/statements_9001.htm)
    Of course you can simply truncate the tables if you don't want any of you previous data on your new tables.
    Another thing we noticed when we imported a new application, is that when a Named LOV was used in a column of an updatable report, it didn't transfer over, so we had to go back to that select list and reset it as that particular Named LOV.
    One thing you will want to be careful for if you're planning on importing/exporting applications frequently, for new versions and releases, is to make sure you don't hardcode any schema names in with your SQL in the application. This caused us some headaches because when we would import the new application, the new schema on which the tables existed was not the same as the one from the old app, and we kept getting errors until we went back and deleted every instance of the schema name in the SQL.
    There may very well be better and more efficient ways to do these things than how I have suggested, but these are methods we used and we have been successful so far.
    Hope this helps.

  • Import/Export Log of workflows

    Hi all,
    I have one very simple doubt. When I import/export any workflow, a message
    gets displayed that w/f is successfully imported/exported. Now say I want to
    know the exact date/time of when a particular workflow is imported in the
    studio.
    Can I know that from any log file ? Is there any feature to know that?
    thanks in advace.

    Hi Olli,
    For the multiple numeric limit test, you will need to individually specify which numeric limits you want to export. Lets suppose you have 3 sets of limits for your multiple numeric limit test. If you wanted to export the first set, you would use the syntax
    Step.Result.Measurement[0].Limits.Low
    Step.Result.Measurement[0].Limits.High
    You will need to do this for each set of limits you have in your array. Simply replace the "?" with the index of the element in the array.
    Hope this helps!
    Best Regards,
    Jonathan N.
    National Instruments

  • SQL Exoress 2008 import export Wizard wont import Access 2003 mdb to SQL 2008 DB

    Just installed SQL Express with Tools, including SSME and Import Export Wizard.
    Attempted to transfer Access 2003 DB tables from an mdb file to a SQL 2008 Express DB.
    I can view the data in the tables in Access, however, when I tell it to  do the deed, it begins the process and then errors out with a Error 0xc020801c:
    "TITLE: SQL Server Import and Export Wizard
    Could not connect source component.
    Error 0xc020801c: Source - ParentingStats [1]: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "SourceConnectionOLEDB" failed with error code 0xC0202009.  There may be error messages posted before this with more information on why the AcquireConnection method call failed.
    ADDITIONAL INFORMATION:
    Exception from HRESULT: 0xC020801C (Microsoft.SqlServer.DTSPipelineWrap)"
    I am unable to find anything that translates this into something mere mortals can deal with.  This is repeatable.
    Steps in the wizard:
    1.  Source: Data Source selected is "Microsoft Access".  The filename is correct.  The username is correct.  The password is blank (there is no password in the Access db).  Clicking on the "Advanced..." button, I get the opportunity to "Test Connection".  I test the connection and the test is successful.
    2.  Destination: I select my server name and the SQL Native Client, select Windows Authentication, and Select my SQL 2008 Express db from the dropdown list.
    3.  Specify Tabloe Copy or Query: I select Table copy
    4.  Select Table or Views: I check the tables I want to copy and successfully preview the data in each table that I checked.  I click on "Edit Mappings ..." and verify that I want to create a new table for each checked table.
    5.  Run package: I accept the pre-checked "Run Immediately" and click the NEXT button
    6.  I get the following:
    "Source Location : C:\Users\wb5rvz\Documents\StatisticsApp_V3_69.mdb
    Source Provider : Microsoft.Jet.OLEDB.4.0
    Destination Location : SHACK_PC\SQLEXPRESS
    Destination Provider : SQLNCLI
    Copy rows from `ParentingStats` to [dbo].[ParentingStats]
    The new target table will be created.
    Copy rows from `Statistics` to [dbo].[Statistics]
    The new target table will be created.
    Copy rows from `StatsSummary` to [dbo].[StatsSummary]
    The new target table will be created.
    Copy rows from `Volunteers_Confidential` to [dbo].[Volunteers_Confidential]
    The new target table will be created.
    Copy rows from `YearMonthTbl` to [dbo].[YearMonthTbl]
    The new target table will be created.
    The package will not be saved.
    The package will be run immediately.
    Provider mapping file : c:\Program Files\Microsoft SQL Server\100\DTS\MappingFiles\JetToMSSql9.xml"
    7.  I click the FINISH button and I get
    "Initializing Data Tasks .... Success"
    "Initializing Connections ...Success"
    "Setting SQL Commend ....20% Compoete"
    "Setting Source Connection ...Error (and an error link)"
    (All following tasks were "Stopped"
    Error detail is:
    ===================================
    Could not connect source component.
    Error 0xc020801c: Source - ParentingStats [1]: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "SourceConnectionOLEDB" failed with error code 0xC0202009.  There may be error messages posted before this with more information on why the AcquireConnection method call failed.
     (SQL Server Import and Export Wizard)
    ===================================
    Exception from HRESULT: 0xC020801C (Microsoft.SqlServer.DTSPipelineWrap)
    Program Location:
       at Microsoft.SqlServer.Dts.Pipeline.Wrapper.CManagedComponentWrapperClass.AcquireConnections(Object pTransaction)
       at Microsoft.SqlServer.Dts.DtsWizard.Execute.SetSourceConnection(Exception& ex, TransformInfo ti)
    OS is Vista Home Premium SP1 (32 bit)
    Processor = Intel core 2 duo E7200 @ 2.5 GHz
    SQL Server Software was just downloaded yesterday, so it is whatever is current on the download site:
    SQL Express with Tools
    So, how do I get this transform to work?  I do not have nor do I want/afford to put Access 2003 on this machine.
    Thanks
    RRR

    I had this similar problem - 32-bit SQL Server 2005 trying to import tables from Access 2000 .mdb file, same error:
    Error 0xc020801c: Source - ParentingStats [1]: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "SourceConnectionOLEDB" failed with error code 0xC0202009.  There may be error messages posted before this with more information on why the AcquireConnection method call failed.
     (SQL Server Import and Export Wizard)
    ===================================
    Exception from HRESULT: 0xC020801C (Microsoft.SqlServer.DTSPipelineWrap)
    I know you said you clicked "Advanced..." and Test Connection when you chose your Access database - but that is what resolved the error for me.  I chose my .mdb file, username is admin, password is blank, but if I don't click the Advanced button and test the connection before continuing on, the import fails with above error message.  Go figure, since the username/blank password is correct. 
    FWIW, sorry if that doesn't help you though.

  • XI 3.0 : Import/Export of IB: Design Objects via Filesystem

    <b>Failure: "You are not permitted to delete any objects since the software component cannot be changed"</b>
    Today I've tried out the import/export functionality of the integration builder design.
    Therefor I've exported a whole <i>SoftwareComponentVersion</i> into a file and after that reimported it.
    Everything works fully correct. But now, when i try to delete this <i>SoftwarComponentVersion</i> or any <i>object</i> within, i face the warning: "You are not permitted to delete any objects since the software component cannot be changed" and i am not able to delete it.
    <b>Have you any experience dealing this problem?</b>
    <u>Thx for your answer!</u>

    Hi Friends,
    I have try to do the same stuff but i could not see the objects imported into swcv.
    I did as follows:
    1. Imported swcv from sld.
    2. created a namespace
    4. created some design objects.
    5. activated the changed list.
    6. Exported the swcv in tpz file
    7. removed all the objects from swcv.
    8. imported the design objects from previously exported tpz file by copying it into the import folder at xiserver.
    9. it says objects are successfully imported and i can see the file is transfered from import folder to importedFiles folder with timestamp suffix.
    but i am still unable to see these objects into the swcv.
    Where i have done mistake or should i need to do something more as i wanted to test this export/import feature having only one xiserver.

  • Import Export Utility

    Hi,
    I have used import/export utility to migrate users from dev to test. While importing only "Admin" user is imported successfully but no others. Here are the importexport properties file, trace and error log for your reference. This import utility is only processing the users who has been part of in both the dev and test servers.
    #import export operations
    importexport.username=admin
    importexport.password={CSS}MRcYv323uzxGr8rFdvQLcA==
    importexport.css=http://testpro:58080/interop/framework/getCSSConfigFile
    importexport.cmshost=testpro
    importexport.cmsport=58080
    importexport.locale=en
    #import operations
    import.file=Test_Export.csv
    import.operation=create/update
    import.fileformat=csv
    import.maxerrors=100
    importexport.trace.events.file=D:/Hyperion/common/utilities/CSSImportExportUtility/cssimportexport/importexport/trace.log
    importexport.errors.log.file=D:/Hyperion/common/utilities/CSSImportExportUtility/cssimportexport/importexport/errors.log
    #export operations
    export.fileformat=csv
    export.user.filter=*
    export.group.filter=*
    export.role.filter=*
    export.file=Test_Export.csv
    export.producttype =*
    export.projectnames=*
    export.applicationnames=*
    Trace...
         2009-09-08 11:53:44,162 Attempting a import operation
         2009-09-08 11:53:45,833 Import : Attempting to create user admin
         2009-09-08 11:53:45,943 Import : Create user admin failed. Attempting update.
         2009-09-08 11:53:45,943 Import : Attempting to update user admin
         2009-09-08 11:53:45,943 Import : User updated : admin
         2009-09-08 11:53:45,943 Import : Attempting to create user adminuser
         2009-09-08 11:53:45,958 Import : Create user adminuser failed. Attempting update.
         2009-09-08 11:53:45,958 Import : Attempting to update user adminuser
         2009-09-08 11:53:45,958 Import : Unable to locate user adminuser
         2009-09-08 11:53:45,958 Import : Attempting to create user hypadmin
         2009-09-08 11:53:45,958 Import : Create user hypadmin failed. Attempting update.
         2009-09-08 11:53:45,958 Import : Attempting to update user hypadmin
         2009-09-08 11:53:45,958 Import : Unable to locate user hypadmin
         2009-09-08 11:53:45,974 Import : Attempting to create user Testuser1
         2009-09-08 11:53:45,974 Import : Create user Testuser1 failed. Attempting update.
         2009-09-08 11:53:45,974 Import : Attempting to update user Testuser1
         2009-09-08 11:53:45,974 Import : User updated : Testuser1
         2009-09-08 11:53:45,974 Import : Attempting to create user Testuser2
         2009-09-08 11:53:45,974 Import : Create user Testuser2 failed. Attempting update.
         2009-09-08 11:53:45,974 Import : Attempting to update user Testuser2
         2009-09-08 11:53:45,990 Import : Unable to locate user Testuser2
         2009-09-08 11:53:45,990 Import : Attempting to create user Testuser3
         2009-09-08 11:53:45,990 Import : Create user Testuser3 failed. Attempting update.
         2009-09-08 11:53:45,990 Import : Attempting to update user Testuser3
         2009-09-08 11:53:45,990 Import : Unable to locate user Testuser3
         2009-09-08 11:53:45,990 Import : Attempting to create group Test_Group
         2009-09-08 11:53:45,990 Import : Create group Test_Group failed. Attempting update.
         2009-09-08 11:53:45,990 Import : Attempting to update group Test_Group
         2009-09-08 11:53:46,099 Import : Updated group Test_Group
         2009-09-08 11:53:46,099 Import : Attempting to create group WORLD
         2009-09-08 11:53:46,099 Import : Create group WORLD failed. Attempting update.
         2009-09-08 11:53:46,099 Import : Attempting to update group WORLD
         2009-09-08 11:53:46,130 Import : Updated group WORLD
         2009-09-08 11:53:46,130 Import : Attempting to replace group/user members for group Test_Group
         2009-09-08 11:53:46,146 Import : Unable to locate user Testuser2
         2009-09-08 11:53:46,146 Import : Attempting to replace group/user members for group WORLD
         2009-09-08 11:53:46,224 Import : Replaced group/user members for group : WORLD
    Summary :
         Processed successfully 2 user(s), unsuccessfully 4 user(s).
         Processed successfully 2 group(s), unsuccessfully 0 group(s).
         Processed successfully 1 group relationship(s), unsuccessfully 1 group relationship(s).
         Processed successfully 0 role(s), unsuccessfully 0 role(s).
         Processed successfully 0 role relationship(s), unsuccessfully 0 role relationship(s).
         Processed successfully 0 application(s), unsuccessfully 0 application(s).
         Processed successfully 0 delegated list(s), unsuccessfully 0 delegated list(s).
         The css.xml file used is http://172.27.95.99:58080/interop/framework/getCSSConfigFile
         The data file used is D:\Hyperion\common\utilities\CSSImportExportUtility\cssimportexport\importexport\Test_Export.csv
         The error log file used is D:\Hyperion\common\utilities\CSSImportExportUtility\cssimportexport\importexport\errors.log
         The trace log file used is D:\Hyperion\common\utilities\CSSImportExportUtility\cssimportexport\importexport\trace.log
    ERROR log:
    User hypadmin not found
    User Testuser3 not found
    User Testuser2 not found
    User adminuser not found
    User Testuser2 not found
    Please help.
    Thanks,
    Ader

    Hello there,
    Are you able to resolve this problem, I am also stuck with the same problem, any suggestions...
    Thanks
    Vince

  • OWB is not showing some default options like contol center,import/export

    Oracle (11.2.0.1.0) databse is installed on linux.
    it is successfully installed on linx.
    when i am trying to login to OWB GUI with owbowner/owbwoner.it is opend successfully.
    1)when i right click on that 'MY_PROJECT' it is not showing any options like NEW,validate,import/export .
    2)Under TOOL tab,control centre is not showing
    3)Under TOOL tab,in preferences,it not showing OWB Environment properties
    Like this way lot of default options are not showing.
    Can anybody help on this issuue........?
    Edited by: krishna on Dec 24, 2011 12:48 AM

    Oracle (11.2.0.1.0) databse is installed on linux.
    it is successfully installed on linx.
    when i am trying to login to OWB GUI with owbowner/owbwoner.it is opend successfully.
    1)when i right click on that 'MY_PROJECT' it is not showing any options like NEW,validate,import/export .
    2)Under TOOL tab,control centre is not showing
    3)Under TOOL tab,in preferences,it not showing OWB Environment properties
    Like this way lot of default options are not showing.
    Can anybody help on this issuue........?
    Edited by: krishna on Dec 24, 2011 12:48 AM

Maybe you are looking for

  • Cheque Printing issue incase of Vendor advance payments

    Hi all,      We are doing vendor payments using F-58 and printing cheque from there itself, and in case of advance payments we are using F-48 for payments and to print cheque we are using FBZ5.       When we take printout from FBZ5 for advance paymen

  • How do i make a list in ID

    I want to make a list in a document, so that for each new paragraf ther comes a new number 1. Bla bla bla 2. More bla bla bla 3. even more bla bla bla Hwat is the smartes (easy) way to do this ???

  • Error in filling setup tables

    While filling the setup tables iam getting this error. Material 009011-004 could not be converted from unit EA to unit FT Message no. QMEX 010 Diagnosis There is no quantity conversion of unit EA into the base unit ofmeasure FT in material master 009

  • 1g nano problems, locked out of itunes, tried the 5 r's, please help!

    I just got a 1g nano from a seminar i went to, and i installed it and installed the latest version of itunes and everything, and when i click the ipod, then the music part it shows a padlock after the amount of space left. I registered and everything

  • Calendar notifications silent on my Classic

    For some reason, my Classic (10.3.1.1565 ) will not play a sound with Calendar notifications.  I've checked all the settings, and sound and volume are definitely on (and I can hear phone, email and text notifications fine), but Calendar notifications