Howto export and import SLD data to different SLD's

Hi All,
I have a landcape with 4 SLD's. A central SLD within Solution Manager and 3 SLD's for resp. XI dev,qas,prd.
The central SLD is version 7.0 and the XI versions are 2.2. (model versions are the same, CR are different -> XI SAP_CR 2.18 -> Solman SAP_CR 2.0)
The idea is that all changes in Bussiness (including new products and software components) and Technical Systems take place in the Solution Manager. After a change we make an export and import it into XI dev, qas and so on.
However....
When adding, for example, an exsisting product to a technical system, export it on Solman and import it into XI dev, all entries dissapear(sapms/host/clients).
We filled Solman with a full export of XI development and that worked fine.
Does anybody has an idea about actions to be taken?
Thanks,
Sjoerd Lubbers

Hi All,
I have a landcape with 4 SLD's. A central SLD within Solution Manager and 3 SLD's for resp. XI dev,qas,prd.
The central SLD is version 7.0 and the XI versions are 2.2. (model versions are the same, CR are different -> XI SAP_CR 2.18 -> Solman SAP_CR 2.0)
The idea is that all changes in Bussiness (including new products and software components) and Technical Systems take place in the Solution Manager. After a change we make an export and import it into XI dev, qas and so on.
However....
When adding, for example, an exsisting product to a technical system, export it on Solman and import it into XI dev, all entries dissapear(sapms/host/clients).
We filled Solman with a full export of XI development and that worked fine.
Does anybody has an idea about actions to be taken?
Thanks,
Sjoerd Lubbers

Similar Messages

  • Export and import UTF8 data between different databases

    Hi,
    I want to know how to do the following:
    export data from database 1 and then import the data to database 2
    I export user, without grants, with table data, without compress extents
    database 1:
    machine: SunOS 5.8 Generic_108528-14 sun4u sparc SUNW,Sun-Fire-280R
    oracle version: 8.1.7
    charset: SIMPLIFIED CHINESE_CHINA.UTF8
    database 2:
    machine: SunOS 5.7 Generic_106541-08 sun4u sparc SUNW,Ultra-2
    oracle version: 8.1.6
    charset: AMERICAN_AMERICA.UTF8
    Question:
    1. how to do it by using exp and imp command?
    2. Before exporting, what NLS_LANG should I set?
    3. Before importing, what NLS_LANG should I set?
    I can export data but got errors when importing as follow:
    Export file created by EXPORT:V08.01.07 via conventional path
    import done in UTF8 character set and UTF8 NCHAR character set
    IMP-00069: Could not convert to environment national character set's handle
    IMP-00000: Import terminated unsuccessfully
    Thanks a lot.
    Regards,
    Kenny

    Hi, Nat,
    Thanks for your post:
    I have tried the following:
    Case 1:
    - set environment NLS_LANG="SIMPLIFIED CHINESE_CHINA.UTF8" in machine 1
    - export data from machine 1
    - ftp the export from machine 1 to machine 2 in binary mode
    - set environment NLS_LANG=AMERICAN_AMERICA.UTF8 in machine 2
    - import the data to machine 2
    Result:
    Export file created by EXPORT:V08.01.07 via conventional path
    import done in UTF8 character set and UTF8 NCHAR character set
    IMP-00069: Could not convert to environment national character set's handle
    IMP-00000: Import terminated unsuccessfully
    Case 2:
    - set environment NLS_LANG="SIMPLIFIED CHINESE_CHINA.UTF8" in machine 1
    - export data from machine 1
    - ftp the export from machine 1 to machine 2 in binary mode
    - set environment NLS_LANG="SIMPLIFIED CHINESE_CHINA.UTF8" in machine 2
    - import the data to machine 2
    Result:
    Export file created by EXPORT:V08.01.07 via conventional path
    import done in UTF8 character set and UTF8 NCHAR character set
    IMP-00069: Could not convert to environment national character set's handle
    IMP-00000: Import terminated unsuccessfully
    Case 3:
    - set environment NLS_LANG=AMERICAN_AMERICA.UTF8 in machine 1
    - export data from machine 1
    - ftp the export from machine 1 to machine 2 in binary mode
    - set environment NLS_LANG=AMERICAN_AMERICA.UTF8 in machine 2
    - import the data to machine 2
    Result:
    Export file created by EXPORT:V08.01.07 via conventional path
    import done in UTF8 character set and UTF8 NCHAR character set
    IMP-00069: Could not convert to environment national character set's handle
    IMP-00000: Import terminated unsuccessfully
    Case 4:
    - set environment NLS_LANG=AMERICAN_AMERICA.UTF8 in machine 1
    - export data from machine 1
    - ftp the export from machine 1 to machine 2 in binary mode
    - set environment NLS_LANG="SIMPLIFIED CHINESE_CHINA.UTF8" in machine 2
    - import the data to machine 2
    Result:
    Export file created by EXPORT:V08.01.07 via conventional path
    import done in UTF8 character set and UTF8 NCHAR character set
    IMP-00069: Could not convert to environment national character set's handle
    IMP-00000: Import terminated unsuccessfully
    database 1:
    machine: SunOS 5.8 Generic_108528-14 sun4u sparc SUNW,Sun-Fire-280R
    oracle version: 8.1.7
    charset: SIMPLIFIED CHINESE_CHINA.UTF8
    database 2:
    machine: SunOS 5.7 Generic_106541-08 sun4u sparc SUNW,Ultra-2
    oracle version: 8.1.6
    charset: AMERICAN_AMERICA.UTF8
    I cannot successfully import the exported data from database 1 to database 2. What is the correct procedure and setting in NLS_LANG in both machines?
    Can I import 8.1.7 exported data to 8.1.6 database?
    Please help.
    Regards,
    Kenny

  • Export and import of data not table and data ????

    hii brothers and sister
    plz i have a a quetion about Export and import of data in oracle forms
    i have created 02 boutons one for export his trigger like this :
    eclare
    alrt number;
    v_directory varchar2(200) := 'c:\backup'; --- that if the C Drive not the Drive that the windows had installed in it.
    path varchar2(100):='back_up'
    ||to_char(sysdate,'dd_mm_yyyy-hh24_mi_ss');
    v_exp varchar2(200) := 'exp hamada/hamada2013@orcl file = '
    ||v_directory
    ||'\'
    ||path
    ||'.dmp';
    begin
    host(v_exp);
    alrt:=show_alert('MSG');
    end;
    and the bouton import is like this
    declare
    alrt number ;
    v_ixp varchar2(200) := 'imp userid=hamada/hamada2013@orcl file =c:\backup2\back.dmp full=yes';
    begin
    host(v_ixp);
    alrt:=show_alert('MSG');
    ref_list;
    end;
    i have just one table "phone"
    this code is correct he expot not only the data but also the creation of the table ....for exemple i do export and evry thing is good until now and i find the .dmp in the folder backup .. but when i deleted all data from my app and try to import this .dmp iit show me error it tell me thet the table phone is already created ....
    so plz help wanna just export the data of phone not the creation of table and data ???? or how can i import just the data from this .dmp ??

    Pl post OS and database versions.
    You will likely need to use the IGNORE flag - http://docs.oracle.com/cd/E11882_01/server.112/e22490/original_import.htm#sthref2201
    Imp utility (by default) will try and create the table first. Since the table already exists, imp reports an error. Use the IGNORE flag in your imp command to not report such errors.
    HTH
    Srini

  • Export and import table data with Java

    I need a library for simple exporting and importing table data.
    The data should be exported to a SQL file with insert statements.
    I just want to tell the library the table name, the connection and where to store the file. The usage should be very simple.
    Are there any small libraries for this? Finished calsses and methods which I can just call?

    I need a library for simple exporting and importing
    table data.
    The data should be exported to a SQL file with insert
    statements.Every database has utilities to export/import data from tables. Take a look at your database manual.

  • Howto Export and Import CAF project

    Hi,
    Is there a way to export and import my CAF projects to more than one installations of NWDS? I've tried different ways but the main problem is that I can't see the "imported" projects in the Composite Application Explorer of the CAF perspective in NWDS.
    The only way I've managed to do this is to create a new CAF project with the same name as the one I want to import and copy all files into the newly created structure but surely there must be an easier way to do this, or??
    Best regards,
    Mikael

    Does this solution still apply?
    I want to export a CAF project from NWDS 7.10 and import it into NWDS 7.20.
    If there are any breaking API-changes, this is no problem as I can fix it later.
    However I need to transport all BO and Service-Definitions and the (possibly outdated/deprecated) code.
    I cant get it working with your linked document.
    Any hint appreciated. Thanks alot!
    Kai

  • Export and Import in Data warehouse

    Hi,
    I have built a data warehouse project with few dimensions and a cube on a server machine, say server1. Now i have another server machine on which i want to develop this project for bulk production.
    I want to import all the developments from server1 to new server machine, say server2, To save my time. I exported data from server1 using export functionality and imported the same file to server2 using import function. My questions is.......
    Is it possible to use all the imported objects like cube, dimension, mappings, tables and sequences in the same way in server2 as i was using in server1. If yes then what are the necessary configurations, i have to made.???? because imported dimensions are not able to deploy in new server2 machine giving different errors especially invalid location and invalid table errors for mapping and dimensions.
    thanks in advance
    imran

    you can sue the MDL file on your new server but you have to do the following:
    1. Register locations.
    2. Configure the mapping to use the new locations registered.
    4. Configure Control Center locations.
    Register the location in Control center
    Deploy the mappings/Process flows
    The Invalid location error is occuring becaue the location is not configured and registered in your connection explorer.

  • Exporting and Importing Large data set of approx 300,000 rows

    Hi,
    I have a table in db 1(approx 10 columns) and want to copy all the rows(approx. 300,000) from this table with a simple where clause to the same db table in db 2. Both databases are on unix.
    I am executing this from a laptop with windows XP remotely connected to my office network.
    Could someone let me know what is the best way to do this.
    Thanks

    331991 wrote:
    Thanks for the detailed instructions. I however have some limitations:
    1. Both schemas(from and to) are on the same database server. I am the schema owner for both the schemas A logical impossibility in Oracle. A schema is defined by its owner, therefor you cannot have two schemas owned by the same owner. SCHEMA1 is, by definition, owned by user SCHEMA1. And SCHEMA2 is, by definition, owned by user SCHEMA2.
    but don't have rights to create dir's on the server.Then it is of no value to create a directory object in the database. The database's directory object is nothing but an alias to refer to an actual, existing directory on the host server.
    2. I don't want to copy all data from db1 to db2. I want to copy data where id > 5000 in the id column. Also in table in db1 has 10 columns and table in db2 has 15 columns with 10 from db1 with same data types and 5 more .
    How can I export the data to my laptop from db1 and then import into db2 in this scenario?
    You don't. Create a dblink and copy the data directly from the source to the target:
    INSERT INTO TARGET_TABLE VALUES
      (SELECT COLA, COLB, COLC, NULL, NULL, NULL, SYSDATE
       FROM SOURCE_TABLE@SOURCE_LINK
       WHERE ID > 5000);
    Also I am using Oracle 10G.
    Thanks

  • About the exporting and importing xml data file in the pdf form

    Hi all,
    I need help for importing xml data file in the pdf form. When I write some thing in the text field with fill color and typeface (font) and exported xml data using email button. When I imported that xml file in the same pdf file that is used for exporting the xml data then all the data are shown in the control but not color and font typeface. Anyone has suggestion for solving this problem. Please help me for solving this problem.
    Thank you
    Saroj Neupane

    Can you post a sample form and data to [email protected] and I will have a look.

  • Export and Import encrypted data

    Hi,
    I have a database table with encryped data (encrypted using DBMS_OBFUSCATION_TOOLKIT.DES3Encrypt). I am having an issue when I export this table and import it into a new schema. The encrypted data seems to have changed after import. I am unable to decrypt it from the new schema.
    Below is the character set details from export/import.
    "Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set. Server uses WE8ISO8859P1 character set (possible charset conversion)."
    "Import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set."
    Has anybody had this issue before? Does it have anything to do with the character set? If so, how do I fix it?
    Thank you!

    Hello,
    since this question is about using the export utility, you might better ask this in {forum:id=61} or {forum:id=732}.
    Regards
    Marcus

  • Export and Import of data fails

    Hi,
    Import and Export of data fails. Sometimes the application itself crashes when i try to import data. The error i get while importing data using a rule file is
    Reading Rule SQL Information For Database [Rev_FLA]
    Reading Rules From Rule Object For Database [Rev_FLA]
    Parallel dataload enabled: [1] block prepare threads, [1] block write threads.
    Unable to Allocate Aligned Memory for [pMemByte] in [adDatGetFreeBuffer].
    Reducing cache memory pages from [3996] to [1545] due to a lack of virtual memory.
    Transaction [ 0x1004a( 0x4e576783.0x92ba8 ) ] aborted due to status [1130203].
    Data Load Transaction Aborted With Error [1130203]
    Unexpected Essbase error 1003050
    The error from the application log is
    [Fri Aug 26 14:59:29 2011]Local/Plan_UAT/Rev_FLA/HypUser/25336/Info(1013166)
    Received Command [Import] from user [HypUser] using [L_RevFLA.rul]
    [Fri Aug 26 14:59:29 2011]Local/Plan_UAT/Rev_FLA/HypUser/25336/Info(1003040)
    Parallel dataload enabled: [1] block prepare threads, [1] block write threads.
    [Fri Aug 26 14:59:30 2011]Local/Plan_UAT/Rev_FLA/HypUser/22716/Info(1008139)
    Unable to Allocate Aligned Memory for [pMemByte] in [adDatGetFreeBuffer].
    [Fri Aug 26 14:59:30 2011]Local/Plan_UAT/Rev_FLA/HypUser/22716/Info(1006064)
    Reducing cache memory pages from [3996] to [1545] due to a lack of virtual memory.
    [Fri Aug 26 14:59:39 2011]Local/Plan_UAT/Rev_FLA/HypUser/22716/Warning(1080014)
    Transaction [ 0x1004a( 0x4e576783.0x92ba8 ) ] aborted due to status [1130203].
    [Fri Aug 26 14:59:41 2011]Local/Plan_UAT/Rev_FLA/HypUser/25336/Error(1003050)
    Data Load Transaction Aborted With Error [1130203]
    [Fri Aug 26 14:59:41 2011]Local/Plan_UAT/Rev_FLA/HypUser/25336/Info(1003037)
    Data Load Updated [1.52368e+007] cells
    [Fri Aug 26 14:59:41 2011]Local/Plan_UAT/Rev_FLA/HypUser/25336/Error(1013289)
    Command [Import] failed due to memory allocation failure
    What am i supposed to do? This happens in all the three cubes of the applicaion i Have. In all the three cubes, Index and data cache are set to 0.5 GB and the server RAM is 64GB.
    The size of the file i am trying to import is not more than 0.5 GB.
    Regards,
    Ragav.

    You need to check how much memory your application is consuming, if it is windows 32bit then that will need to be less than 2GB.
    It sounds to me like it is asking for more than 2GB and cannot address anymore, the combination of the caches for all the databases in the application could be taking it close to the maximum and when the application asks for more memory it cannot get any from the OS.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Export and Import Material data (MM01)

    Hi,
    I would like to know if it's possible to export all the data of the material master data from one system to import in another one ?
    I thought about a program that create data like the LSMW standard program. But I didn't find the oposite of the RMDATIND.
    I thought about IDoc, but I'm not sure it's possible.
    Please don't speak about SE16
    Thanks
    Fred

    1. Yes, we used external "number" range for the material number.
    2. Yes, we have extend, but it's not important for me.
    My big question is :
    - What message type I have to use ?
    - Do I have to create RFC connexion or could I just copy the file ?
    It's 2 SAP System, and it's not the same system. (Developpment -> Quality).
    Message was edited by: Frédéric Girod

  • How to export and import only data not table structure

    Hi Guys,
    I am not much aware about import ,export utility please help me ..
    I have two schema .. Schema1, Schema2
    i used to use Schema1 in that my valuable data is present . now i want to move this data from Schema1 to Schema2 ..
    In schema2 , i have only table structure , not any data ..

    user1118517 wrote:
    Hi Guys,
    I am not much aware about import ,export utility please help me ..
    I have two schema .. Schema1, Schema2
    i used to use Schema1 in that my valuable data is present . now i want to move this data from Schema1 to Schema2 ..
    In schema2 , i have only table structure , not any data ..Nothing wrong with exporting the structure. Just use 'ignore=y' on the import. When it tries to do the CREATE TABLE it (the CREATE statement) will fail because the table already exists, but the ignore=y means "ignore failures of CREATE", and it will then proceed to INSERT the data.

  • Export and Import  transport request between different version?

    Hi,
    I have tried to Export the transport requests from ECC5 to ECC6 via STMS .Its not throughing any error but no Master datas are transported. Anyone have idea about that?

    Hello,
    From my experience SAP didn't recomneded transporting from 46C -> ECC5.
    The structure of tables and objects are a little bit different between different
    releases.
    Dimitry

  • Exporting and importing form data with out user intervention

    Hi
    A sample for this is posted on
    http://eslifeline.files.wordpress.com/2008/06/importing-and-exporting-data-from-pdf.pdf

    Hi Steffen,
    You should go to user manegment and there you should export you'll have to copy the text file it will create than paste it in the import of the other portal it should copy the users and the groups.
    hope it helps,
    Yoav

  • Export and import problems

    i have 2 major problems importing my application from htmldb.oracle.com to my serevr at home.
    1.
    i export my application and thems from htmldb.oracle.com.
    when i opened the sql export file i saw that all hebrew chracters was "jibrish".
    how can i export my application with hebrew fonts ?
    2. i tried to export and import xml data (my tables data).
    the export xml file showing me the hewbrew data but when i import it to my tables it gets ????????? instead of hebrew.
    i think it's the nls lang but i don't know what nls land i need and where to change it
    (database ,enviroment....)
    can someone help me with this problems ?
    thanks
    p.s
    my db is 10.1.0.3
    red hat linux as 4 on vmware 4.5
    my nls parameters:
    nls_language: american
    nls_territory: america
    nls_characterset: we8iso8859p1
    nls_nchar_charcterset: al16utf16
    thanks

    Zvika,
    I have two options that may work for you. First, define the fields that have Hebrew characters using the CHAR qualifier. Example, varchar2(30 char). That allows you to store double byte characters from other languages, and overrides the nls_length_semantics (byte default) parameter.
    Or, you could set the nls_length_semantics to default to char. It definitely uses more space when the char qualifier is used, so it's probably best to override the byte default only when necessary.
    Hope that helps!
    Also, I posted the 'Blogging Tool for HTMLDB' question with the username 'aufan89', which I had to change because my email changed.
    So my new username is now 'aufan1989'. I look forward to your email when you get your app fixed and posted onto HTMLDB Studio!
    Thanks!

Maybe you are looking for

  • Verizon - The New Comcast!

    Well, now I HATE Verizon. Last Tuesday (6/28) I called about getting a new DVR. The woman reviewed my account and talked me into upgrading to the Ultimate HD package from the HD Essentials and said I'd get the same movie package that I had ( I had St

  • How to calibrate my iPad battery gauge?

    I heard that draining iPad battery to 0% is harmful to battery.So how I calibrate my battery gauge without fully discharging it? I hope somebody will give me a clear answer to this.

  • PC Card for MacBook

    Hi, i have a PC Card (wireless 3G CDMA) I use with my laptop PC and I would like to use it in with a MacBook that lacks the PC Card slot. Is this possible via an USB adapter or so? Thanks.... /Mans

  • How do i get my contacts from gmail to iphone

    I just got my iphone 4s and i would like to get my contact list from gmail and put it on my iphone would anybody know how to do it??

  • Etext templates using the API

    HI All, I'm trying to create a Etext template using the API. EFTProcessor processor = new EFTProcessor(); String template = TemplateLocator.getTemplateFullName(mergReq.getTemplateType(), mergReq.getTemplateName()); processor.setData(input); processor