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

Similar Messages

  • Export and import between different versions

    Hi everyone,
    I have some databases in Oracle 7.2, and others in 9i Release 2. Sometimes we have to do exports and imports between them, and I want to know if running the catexp.sql or the catext7.sql file also applies to 9iR2 version.
    Thanks in advance,
    Tania L.

    According to what I have heard yes but I have not tested.
    You can find out that information here:
    Utilities Contents / Search / Index / PDF
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96652.pdf
    Joel P�rez

  • Help:Canadian Export and Import with GTS

    Hi all,
    Could you please explain as to how GTS is used in Canadian exports and imports. Is AES also used in Canada for export filing and how GTS is used in import process ie for import declarations in canada?
    Any help would greatly be appreciated.
    Thanks,
    Shruthi

    Since customs has not been certified for Canada can GTS be used for Compliance Management for Canada? If yes what legal regulations are to be used?
    Thanks,
    Shruthi
    Edited by: shruthi on May 19, 2009 9:24 PM

  • 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....

  • 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.

  • Export and Import with XML(Business Partner)

    Hi All, 
    I am trying to export Business master data using given below code and it is save XML file(For Save XML I using Code A).but when i import same XML file in again in different company it show error (-5002) "Graph - Bad Form Item" if i have same XML file form SAP then same file must be import in SAP(For Import I using Code B)
    For Save XML I using Code A :-
      Public Sub BusinessPartnerSave_XML()
            Dim oBP As SAPbobsCOM.BusinessPartners
              oCompany.XmlExportType = SAPbobsCOM.BoXmlExportTypes.xet_ValidNodesOnly
           oBP = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oBusinessPartners)
            oBP.GetByKey("BNK0001")
            oBP.SaveXML("BusinessPartnerXML" & ".xml")
            MessageBox.Show("File Saved")
    End Sub
    For Import I using Code B :-
       Private Sub CreateBusinessPartnerwithXML()
            Dim sXmlFileName As String
            Dim iElementCount As Long
            Dim iCounter As Long
            sXmlFileName = IO.Directory.GetParent(System.Windows.Forms.Application.StartupPath).ToString & "\xml\BusinessPartnerXML.xml"
            iElementCount = oCompany.GetXMLelementCount(sXmlFileName)
            MsgBox(iElementCount & " Elemnts found in xml file" & vbNewLine & "Ready To Satrt Transaction")
            oCompany.StartTransaction()
            For iCounter = 0 To iElementCount - 1
                oCompany.XmlExportType = SAPbobsCOM.BoXmlExportTypes.xet_ValidNodesOnly
                Select Case oCompany.GetXMLobjectType(sXmlFileName, iCounter)
                    Case SAPbobsCOM.BoObjectTypes.oBusinessPartners
                        oBusinessPartner = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                        oBusinessPartner.Add()
                    Case SAPbobsCOM.BoObjectTypes.oOrders
                        oSalesOrder = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                        oSalesOrder.Add()
                End Select
                oCompany.GetLastError(lErrCode, sErrMsg)
                If lErrCode <> 0 Then
                    MsgBox("Error Message: " & sErrMsg & vbNewLine & "Transaction will be rolled back")
                    Exit Sub
                End If
            Next iCounter
            oCompany.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_Commit)
            MsgBox("Data inserted successfully")
        End Sub
    One thing If i edit same XML file manual and import then it work but it is not possible for large master data.
    Please guide me where is the issue.so i can use this code.
    Thanks
    Manvendra

    Hi Mavendra,
    Have you tried to set the XmlExportMode to xet_ExportImportMode?
    Does that work for you?
    Best regards,
    Pedro Magueija

  • Export and import in different OS.

    Hi,
    Source :-
    Oracle 11.2.0.2
    OS :- Linux
    Target :-
    Oracle1 11.2.0.2
    OS:- Windows 2003
    My database is running in Linux machine. Can i do the export ( expdp or exp ) the data from linux server and import it into windows 2003.
    Thanks,

    Yes: http://docs.oracle.com/cd/E11882_01/server.112/e10803/schedule_outage.htm#HABPT5114 says:
    >
    Oracle Data Pump technology enables very high-speed movement of data and metadata from one database to another, across different platforms and different database versions.
    >
    Edited by: P. Forstmann on 18 avr. 2013 13:40

  • Addressbook - export and import to different MacBook - omits some photos

    I can't quite see what the link may be. My husband and I each have a Mac Book. Once in a while I copy the Master address book to my husbands computer (Using the File - Export - Address Book Archive) and then Import on the other machine.
    For some reason SOME of the contact photos don't make it to the 2nd machine - most do. I can't see any relationship for those that don't. I've tried exporting just one of these as a VCard and importing - but the image does not appear on the 2nd machine
    Any ideas?

    According to what I have heard yes but I have not tested.
    You can find out that information here:
    Utilities Contents / Search / Index / PDF
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96652.pdf
    Joel P�rez

  • Editing after exporting and importing onto different computer?

    Can you edit an iMovie ('09) after you export it and import it onto another computer?  It doesn't appear as if I can edit the themes and transitions and other features.
    Thanks.

    Yes, I did finally ascertain that workbooks are not included in the type of export I was trying. Thought I could do the quick and simple via GUI and not the command line. Because I did not have many reports to move, I simply saved them to the local machine and moved them to the designated server.
    I will try the command line you are referring to.
    Thanks for the confirmation.

  • ECC Client export and import with BW data model

    Dear BW Expert,
      We are now have BW QAS system which is connecting to ECC600QAS.
      Now we are going to:
         First  >> Export data ECC600QAS.
         Second Drop this client
         Third Create client with the same logical name as ECC600QAS and then import again with the same logical system name is ECC600QAS. Ofcourse we will re-establish again connection between ECC600QAS and BW QAS.
      In this case, do we need to create all data model or mapping data in BW again. Please help on this.
    Thanks and Regards,
    Kim Cheo.

    Hi Reddy,
      All your notes do not mention anything about in case Client refresh with the same logical name.
      Our case is that we do:
          Step 1:         Export client logical name is "ECC600QAS".
          Step 2:         Drop client "ECC600QAS"
          Step 3:         Import again and create the same client logical name "ECC600QAS".
          In this case do we need to create again all data model, mappying rule or transformation.
          Really, I can not found any idea there in all your note.
    Thanks and regards,
    Kim CheolYeon Lee.

  • Why can I export (and import)the different sizes that I put in the "Responsive Design View"?

    Hello
    I have troubles when try to import or export the different sizes of the Responsive Design View, I manage at least 13, and it's a little preposterous to add one by one. There are a method that export/import them?
    Thanks

    There is a way to store custom settings for responsive design.
    You can create custom settings in the responsive design mode window.
    You can hold down the Shift key and drag the borders via the (right border, bottom border, bottom right corner) resize icons to get specific dimensions and give the current custom setting a name to add them as a preset.
    This will add the preset to the <b>devtools.responsiveUI.presets</b> pref that you can inspect on the <b>about:config</b> page.
    Those settings are stored in JSON format.
    <pre><nowiki>[{"key":"360x640","width":360,"height":640},{"key":"768x1024","width":768,"height":1024},{"key":"800x600","name":"8x6","width":800,"height":600},{"key":"800x1280","width":800,"height":1280},{"key":"980x1280","width":980,"height":1280},{"key":"1280x600","width":1280,"height":600},{"key":"1920x900","width":1920,"height":900}]</nowiki></pre>
    See this thread for some JavaScript code to add extra sizes:
    *[[/questions/957590]]
    You can paste the existing JSON value of the devtools.responsiveUI.presets pref in the prompt and click OK.
    Extra values can be added by typing its dimensions (<width>x<height> <name>).
    You can paste the resulting JSON value back to the devtools.responsiveUI.presets pref or save it.

  • How to export and import with settings intact?

    I noticed that my iphoto library folder in the finder is 2x the size of the 7GB that is displayed in the iphoto application. I then went to my iphoto folder in finder and see that photos that I have deleted long ago are still there (no wonder it's so big)
    Anyways what I want to do is export the photos in my iphoto program and have all the settings including keywords and event folders intact so all can be the same when I import them again.
    I am doing this because when I export the photos to a folder I will then delete all the pictures in the iphoto folder in the finder window and then import the photos I exported so I have only the pics I want.
    Please advise thanks.

    Dorian
    Try using the Rebuild command with iPhoto Library Manager - read the help on that app to see exactly what it does, but it should create a new library leaving the trashed pics behind.
    Regards
    TD

  • Guide me for exporting and importing data from oracle 10g to oracle 9i

    I have been trying export and import options in oracle but m not very clear about the procedure..
    Also when i am logging in as Scott/tiger i am facing an error
    ORA 1542 - tablespace 'USER' is offline and cannot allocate space in it.how to resolve it

    Hello,
    I see two questions.
    ORA 1542 - tablespace 'USER' is offline and cannot allocate space in it.how to resolve it About the error ORA-01542 you have to bring the Tablespace USERS online:
    http://www.error-code.org.uk/view.asp?e=ORACLE-ORA-01542
    If you cannot bring it online you may have to Recover it first.
    I have been trying export and import options in oracle but m not very clear about the procedure..About the Export in 10g and Import in 9i (9.2 or 9.0.1 ?), you have to export with the Export utility of the Target Database (the lowest Database version here: 9.0.1 or 9.2) then, you have to Import to the Target Database using its Import utility (in 9.0.1 or 9.2).
    The following Note of MOS may guide you:
    Compatibility Matrix for Export And Import Between Different Oracle Versions [Video] [ID 132904.1]
    NB: You cannot use here the DATAPUMP.
    Hope this help.
    Best regards,
    Jean-Valentin

  • Export and import of Apps EUL

    I have a Apps EUL and use an Apps user id to work in Discoverer Administrator. This is what the Oracle documentation says and it has been working fine.
    Now I want to export the EUL but when I start the process I get a message that the user does not have access to all the objects and that only the accessible objects will be exported. Shouldn't the Discoverer Manager/Administrator be able to do a full export?
    To get around this problem, I have now been advised to use a database user (the EUL owner) to do the export and import with. Is this the correct way? The Oracle documentation suggest that a database user should never administrate the Apps EUL. Are exporting and importing somehow exluded form this rule?
    Thanks!

    Hi Aparna!
    The Apps EUL was created using a database user. Since then, the EUL has been administered by a Apps user that is dedicated to EUL administration.
    The documentation actually recommend that you create the Apps EUL with a database user and from there on administer the Apps EUL with the Apps user SYSADMIN. My company policy doesn't allow me to use SYSADMIN so I have a "custom" Apps user that I use to do all EUL administration. If at all possible, you should try to use SYSADMIN.
    The guides and website don't really have a step by step guidance as far as I can remember, more explanatory. I would suggest an email to Michael Armstrong-Smith of the learndiscoverer website. He has helped me alot with this particular subject!

  • How to export and import from AIX to solaris a whole schema with different

    how to export and import from AIX to solaris a whole schema with different character set
    import done in US7ASCII character set and AL16UTF16 NCHAR character set
    import server uses WE8ISO8859P1 character set (possible charset conversion)
    Import terminated successfully with warnings.

    The conversion between the character sets on the two servers are handled automatically. Export from one server will export the data given the character set defined on that server. Import into another server will import the data given the character set defined on that server, performing a conversion if necessary. This can be a problem when going from single-byte to a multi-byte character set. In your case, the warning is simply for your information, shoule be no real problem given the character sets you're using.
    For more info...check out (pertains to 9i):
    Export
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/ch01.htm#1006791
    Character Ste Migration
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96529/ch10.htm#1656
    HTH

Maybe you are looking for

  • Need to Programmatically Set IRR Filter on Date Field Due to APEX 4.1 Bug

    There may be another work around but, here is the problem that we are encountering... We have a huge table that is partitioned on a DATE field and an IRR that reports on this table. By default, we want to show the most recent 3 days of data. There is

  • Idoc to uodate delivery date of line item on Purchase order

    Hi All, Our vendor sends a delivery file consisting of delivery date and quantity(could be partial) for line items of a purchase order. I need to update the Purchase order line item with the delivery date and quantity sent from the Vendor. It should

  • Error in images & videos using Firefox 4.0.1

    Ever since I've upgraded to Firefox 4 (and 4.0.1), there are occasional graphical errors in web images and videos, which look like multicolored lines, thin shapes or tetris shapes. It occurs on videos from sites like Hulu and images from Google Image

  • Easy capture sharpening in ACR 6

    After reading most of the books available on ACR and sharpening, including Jeff's latest, and after having dinked with this stuff for many years, I've come to a startling conclusion, at least to me.  Setting Amount = 150, Radius=1. Detail = 0, and Ma

  • SQL Server 2000.

    Hi, I have 2 systems in network. In one system my Application will be running and in another System, SQL Server 2000. Application will be the only System which will be connecting to Database System. I mean it will be just one time installation and I