ORACLE IMPORT HELP RQD

Hai
I want to take a export dump using subset of data. consider a emp table, only group id less than 5 i have take.
exp user_name@schema_name \
            tables=emp query=\"where emp.groupid  \<5\"    file=emp.dmp\
                     log=emp.log \
            rows=y consistent=y feedback=10000 the other table emp1 also has the same groupid with the name groupid1.
My question is
can i import 2 tables(emp and emp1) at a time and put into dmp file like this
exp user_name@schema_name \
            tables=\(emp,emp1\) query=\"where emp.groupid  \<5\"    query=\"where emp1.groupid1  \<5\"  file=emp.dmp\
                     log=emp.log \
            rows=y consistent=y feedback=10000 But this onne throwing error LRM-00112: multiple values not allowed for parameter 'query'
Kindly give your sugestion
S

Hai
i have done by using datapump
expdp sen/hema@xe tables=DEPT,DEPT1 directory=expdp_dir dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log query=dept:\"where deptno=10\" dept1:\"where deptno1=20\"
this is working.
thanks.
kindly confirm me whether it is possible to work in oracle 9i..? oracle 9i will support datapump..?
Waiting
S

Similar Messages

  • Oracle Import and Export Utility

    Hello All,
    Could someone please explain me Oracle Import and Export Utility. I've gone through the below link and it has been mentioned to use keyword 'exp' but I'm not getting any idea where to use it. So kindly explain how the util works.

    Hello;
    Export creates a logical backup its great for move tables, schemas etc.
    Import bring that data back in.
    You can use a parm file with either.
    Import example :
    imp parfile=in.parm
    in.parm ( contains )
    userid=system/<password>
    fromuser=scott
    touser=scott
    file=in.dmp
    log=in.logemp parfile=out.parm
    out.parm ( contains )
    userid=system/<password>
    owner=scott
    file=out.dmp
    log=out.dmp
    statistics=noneYou can use these commands at the OS level to get quick help.
    imp help=y
    enp help=yYou can export a subset of a table :
    exp scott/t<password> tables=emp query="where deptno=20"You can use options like :
    full=y
    BUFFER=2000000
    GRANTS=y
    COMPRESS=yThis utility is being replaced by data pump.
    Best Regards
    mseberg
    There's a short import and export examples here :
    http://www.oracle-dba-online.com/export_and_import.htm
    Edited by: mseberg on Sep 17, 2011 6:46 PM

  • Import is not available all other actions are active but not import help?

    Import is not available all other actions are active but not import help? I wish to import bookmarks from internet explorer, I am using windows 7

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.com/kb/Private+Browsing
    *You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    *To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Deselect: [ ] "Permanent Private Browsing mode"

  • Oracle Report Help

    Hello,
    I am new to Oracle and sql. I am working on the Oracle
    Reports. Can anyone suggest me where will be the best place to
    get help on this. Any suggestions will be appriciated.
    Thanks
    Sam

    Hi Sam..
    I'm also quite new in field of Oracle Reports, I have already
    had experience in Oracle Database Server. I think you may refer
    to the Oracle Reports help coming with your s/w, that's good for
    first understanding. Then.. I just find out that this forum is
    also helpful with many nice and "willing to help" people.
    Well... wish you all the best and go ahead with your new job!!
    kr,
    daniel

  • Oracle support help

    Hi,
    I have just got the login details of Oracle Support.
    I have some Q's regarding client site and want to post on metalink to seek Oracle experts help
    How I can do that?
    Thanks

    Hi 787186 ;
    Yes, I read to use the button, but just couldn't found the create SR button
    I'm service requests tab
    can't find the buttonIf you have open SR permission(your admin can give that right to you) than Service Request tab next to Knowledge tab on metalink main page.
    Please contact wiht your Metalink admin and ask for you have permisson for can create SR or not?
    Regard
    Helios

  • Oracle 10g help file

    Hi,
    Can anyone send me oracle 10g help file. which file has information about the exceptions.
    Uttam SIngh

    Pavan Kumar wrote:
    Hi,
    Are you referring to PL/SQL Exceptions or Error Messages.
    With respect to PL/SQL Exceptions -
    Refer to : http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/errors.htm
    and
    http://download.oracle.com/docs/cd/B10500_01/appdev.920/a96590/adg10pck.htm
    - Pavan Kumar NPavan
    One book is of 11g, another of 9i, neither is of 10g whicj is of OP's version.2ndly, even PL exceptions are listed in the error book given already Orionnet.
    Aman....

  • Oracle DBA Help

    We have an Oracle 9i Database Standard Edition that is in production for about 3 years running on Windows 2003 Server Standard Edition. Our company does not have Oracle DBA. When we purchased Oracle license we didn’t sign up for Oracle Support.
    If something goes wrong with Oracle Database, if we could not figure out the solution on our own, is there any company that provides Oracle DBA help on a contract basis?
    What happens if we get internal errors in the database? Can we still contact Oracle Support?
    Please advice.

    #1. When you purchased Oracle Licenses, I guess Oracle would have provided (Support Identifier or CSI numbers), with that you should be able to create accounts/access with METALINK, which is one form of support Oracle provides. 99.99% of the day-to-day problems are resolved via metalink, oracle forms (like this) and other discussion threads.
    #2. But if you want Oracle personnel onsite, then it needs a different contract or support level, which is very expensive in my opinion. There used to be different support levels like platinum, gold, silver etc., I'm not sure of the classification now, better contact Oracle for additional info.
    I would highly recommend for #1, check the cost involved in #2 compare that with that of hiring a part-time/remote DBA, and see which one works better. If your database is not mission critical, configuring proper back and restore would help bring your database up, but with some downtime.
    Hope it helps,
    Babu Rangasamy

  • Does oracle import datapump fix block corruption?

    Dear all,
    I am having a data block corruption on production. I want to export this DB and import it to a test environment using datapump, in order to do some tests on it.
    However I am concerned whether impdp will resolve this scenario... and therefore I will lose my test case...
    so will oracle import datapump fix block corruption?
    Thank you

    so will oracle import datapump fix block corruption?.No. It detects Logical corruption (corruption and the corrupted segment will not be exported or imported.
    Fix the issue by identifying the segment.
    Get the block information from your alert.log
    select segment_type,owner.segment_name
    from dba_extents
    where file_id = [&file_id] and [&block] between block_id and block_id+blocks -1; if it is index then drop and recreate index
    if it is table and you have backup of that table then restore backup on another database and exp/imp the table.

  • Suggestion regarding Oracle import & export utility

    hi
    I am navneet,I want to give some suggestion on Oracle import & export utility to Oracle Corporation. can u tell me where to send these suggestions
    regards
    navneet

    It would seem to me that if they are enhancement requests, then the right way would be to file an enhancement request. If they are bugs, then file SRs so bugs can be entered.
    Dean

  • Oracle Text Help

    Hello Gurus,
    I am new to Oracle Text so i need your valuable inputs in resolving an issue i am facing.
    Here is the table definition and sample data:
    create table test ( a varchar2(100));
    insert into test values('Hello How are you');
    insert into test values('Just to say you Hello');
    insert into test values('I know you');
    insert into test values('you know');
    insert into test values('you may not know me');
    insert into test values('do i know you');
    SQL> SELECT * FROM test;
    A
    Hello How are you
    Just to say you Hello
    I know you
    you know
    you may not know me
    do i know you
    6 rows selected.
    If user enters search criteria ('you know', for example); i need to return all the records having 'you' AND 'know' anywhere. Hence for search criteria 'you know', i should get following records:
    I know you
    you know
    you may not know me
    do i know you
    Similarly, i need to return below records for criteria 'hello you':
    Hello How are you
    Just to say you Hello
    Can Oracle Text help me here?
    Thanks in advance for your help.
    regards,

    SQL>  create table test ( a varchar2(100))
    Table created.
    SQL>  insert into test values('Hello How are you')
    1 row created.
    SQL>  insert into test values('Just to say you Hello')
    1 row created.
    SQL>  insert into test values('I know you')
    1 row created.
    SQL>  insert into test values('you know')
    1 row created.
    SQL>  insert into test values('you may not know me')
    1 row created.
    SQL>  insert into test values('do i know you')
    1 row created.
    SQL>  create index test_idx on test (a) indextype is ctxsys.context
    Index created.
    SQL>  var str varchar2(100)
    SQL>  exec :str := 'you know'
    PL/SQL procedure successfully completed.
    SQL>  select * from test where contains(a,:str) > 0
    A                                                                              
    I know you                                                                     
    you know                                                                       
    you may not know me                                                            
    do i know you                                                                  
    4 rows selected.
    SQL>  exec :str := 'hello you'
    PL/SQL procedure successfully completed.
    SQL>  select * from test where contains(a,:str) > 0
    A                                                                              
    Hello How are you                                                              
    Just to say you Hello                                                          
    2 rows selected.

  • Oracle Import errors  IMP-00098,   IMP-00028 , IMP-00008

    Hi all
    I have successfully exported a schema called ahc from Database 10g Enterprise Edition Release 10.2.0.1.0 on linux.
    but when i imported in test db server running the same OS and Oracle Versions.it returnd errors .
    i took the export three times but got the same error while importing.
    here is out put
    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
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    export client uses US7ASCII character set (possible charset conversion)
    . . importing table "ADM_DTL" 0 rows imported
    . . importing table "ADVANCES" 1 rows imported
    . . importing table "BANK" 10 rows imported
    . . importing table "BASIC" 2 rows imported
    . . importing table "DESIGN" 240 rows imported
    . . importing table "DISTRICT" 26 rows imported
    . . importing table "EMPLOYEEMAIN" 3 rows imported
    . . importing table "GRADES" 185 rows imported
    . . importing table "ICD" 15413 rows imported
    . . importing table "MAINCODES" 336 rows imported
    . . importing table "QUALIFICATION" 15 rows imported
    . . importing table "SALARY" 2 rows imported
    . . importing table "SPALLOWANCE" 16 rows imported
    . . importing table "TBL_LAB_GROUP" 470 rows imported
    . . importing table "TBL_LAB_MAIN_DTL" 231992 rows imported
    . . importing table "TBL_LAB_MAIN_MAS" 79552 rows imported
    . . importing table "TBL_LAB_OPINION" 856 rows imported
    . . importing table "TBL_LAB_RESULT"
    illegal lob length marker 32770
    bytesread = 00000000000
    TABLE = TBL_LAB_RESULT
    IMP-00098: INTERNAL ERROR: impgst2
    IMP-00028: partial import of previous table rolled back: 137170 rows rolled back
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    *¿4¿¿¿E¿N¿*
    *#¿U="¿1¿¿¿¿;¿~¿O¿¿¿w4H¿¿¿"¿"¿>`N¿¿G¿¿¿¿¿¿¿¿'¿$V¿¿¿¿¿6¿i¿2Xn¿.¿¿_<5H¿¿q¿¿¿¿¿<c¿¿#U07¿¿¿n¿Uh¿*¿¿¿¿¿N¿¿¿v+2db¿9¿¿#jd¿¿¿7¿At¿(*
    *IMP-00008: unrecognized statement in the export file:*
    *¿¿¿V )((*
    *IMP-00008: unrecognized statement in the export file:*
    *¿H¿m¿¿*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    c¿1
    IMP-00008: unrecognized statement in the export file:
    *¿¿¿¿¿PIz¿o/¿¿o¿O¿\¿7¿¿f¿¿¿(¿¿@     @*
    IMP-00008: unrecognized statement in the export file:
    *¿¿¿"¿¿G¿0¿U¿v¿¿1!¿J¿f>¿¿¿44s¿RYD¿j¿¿¿c¿!¿*
    *IMP-00008: unrecognized statement in the export file:*
    *¿¿v)<¿¿i¿:f¿A@*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    *¿%¿1¿¿¿K@*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    *:BLAN.TERMID:=:GLOBAL.TERMID;*
    *IMP-00008: unrecognized statement in the export file:*
    *:BLAN.SHIFT:=:GLOBAL.SHIFT;*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    *END;*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    *r100g0b100¿¿*
    *IMP-00008: unrecognized statement in the export file:*
    *00r25g100b75@*
    *IMP-00008: unrecognized statement in the export file:*
    *00r50g100b75¿*
    *IMP-00008: unrecognized statement in the export file:*
    *00r75g100b75¿*
    *IMP-00008: unrecognized statement in the export file:*
    *00r88g100b75¿*
    *IMP-00008: unrecognized statement in the export file:*
    *IMP-00008: unrecognized statement in the export file:*
    Import terminated successfully with warnings.
    Edited by: farnaw4u on Feb 26, 2010 10:17 AM

    Hello,
    You may experience a bug or a corruption in the "dump". If it's a corruption you may retry your export/import.
    But, anyway, the classical Export/Import is not recommended. Starting with 10.1 you should use Datapump
    (expdp/impdp).
    Please, find enclosed a link about this utility:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/part_dp.htm#i436481
    Hope this help.
    Best regards,
    Jean-Valentin

  • Oracle Import Error

    Hi,
    As part of project requirement I want to import a oracle dump file(possibly exported from oracle 9i or 10g) which was given to me from third party.
    I dont have extensive knowledge on Oracle since I am purely into Microsoft Technologies.
    I installed Oracle 11g std edn(trial version) and done everything right. I changed the default pwd for SYS , SYSTEM as requested by Oracle universal installer.
    I was able to successfully login to localhost site with these id's. However when i try to import the .dmp file into my dB it gives me ORA-01435 user does not exist.
    I tried both interactive and cmd line mode of import statement but nothing worked so far.I can see the following lines.
    Export file created by EXPORT:V09.02.00 via conventional path
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    export client uses US7ASCII character set (possible charset conversion)
    "import sys's object to sys"
    "importing CMS's object to CMS"
    IMP-00003: Oracle error 1435 encountered.
    ORA-01435 user does not exist
    Sorry I dont know how to paste screenshot in this question.
    Please someone help me with this issue. Also after indicating this error I dont know how to go back to the cmd mode. the window does not respond after the error.
    Thanks
    Guhan
    Edited by: gu**** on Mar 22, 2011 12:40 AM
    Edited by: gu**** on Mar 22, 2011 12:51 AM

    I guess that you would have installed DB Control as well. That will give you a GUI interface that you can use to CREATE USER and Grant privileges to the user.
    See http://download.oracle.com/docs/cd/E11882_01/server.112/e10897/users_secure.htm#CHDDCIGA
    Else, see the command-line documentation on
    CREATE USER
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/statements_8003.htm#i2065278
    and
    GRANT
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/statements_9013.htm#i2155015
    It would be preferable to create tablespaces as well -- or you could assign the user the USERS tablespace when you create it.
    Hemant K Chitale

  • Oracle import query

    Hi All,
    Just a query,
    Can I take export of oracle 9.2 db and import into 8.0.6 database. ? Currently I am getting
    Connected to: Oracle8 Enterprise Edition Release 8.0.6.0.0 - Production
    With the Partitioning and Objects options
    PL/SQL Release 8.0.6.0.0 - Production
    IMP-00003: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    IMP-00023: Import views not installed, please notify your DBA
    IMP-00000: Import terminated unsuccessfully
    I have ran the script catexp.sql but no success.
    Regards,

    Try exporting from 9.2 using exp.exe version 8.0.6.
    If the export succeeds you should be able to import the
    resulting file into the 8.0.6 instance.
    Not sure if this will work, but it may be worth trying.
    Hope this helps.
    Kailash.

  • Oracle Import and Export Strategy

    Hi
    I have a senario of Oracle 8i Database migration, where an existing database need to be migrated to a new version with some additional tables, schema changes and new indexes and triggers. There are two ways in which the export import can be implemented first is a FULL DB Imp/Exp and second is TABLE wise. Kindly help me to choose a strategy. Will give you more information based on the discussion.
    regards
    Shantanu

    Hi Shantanu,
    this forum is for import and export of Oracle Portal metadata, you need to post your question in the database fourms.
    mick.

  • Oracle Import/Export

    Has anyone done Export/Import from Oracle 8i (8.1.5) to Oracle Ver 8.0.6. I went through the documentation. It says I have to use Export Utility Release 8.0 against Oracle 8i database. But this utility is not comes along with Oracle 8i. Does this mean I have to bring this earlier version of export utility from some other machine which is hosting the previous release??
    Your suggesition are welcome..
    Thanks in Advance..

    What you can do is
    Case 1:
    if you have an 8.0.6 instance and an 8.1.6 instance running on separate Oracle homes at the same time, then
    1.define a connect string to connect from the 8.0.6 instance to the 8.1.6 database.use the exp from 8.0.6 to connect using
    username/password@connect_string816 and then export the data .This exported data can then be imported into the 8.0.6 database.
    case 2:
    You have only 8.1.6 instance up and running:
    You will have to run the catexp.sql from an Oracle home that has the 8.0.6 software.this will create the required views to export data from the 8.1.6 database in 8.0.6 format.
    Then export the data (this exported data will be in 8.0.6 format)and import it into the 8.0.6 database.
    Hope this helps.
    null

Maybe you are looking for

  • How to create bookmarks on Mac OS 10.8.2 after the installation of a new hard drive?

    At this point I have no bookmarks or folders in Foxfire or Safari. I started with Foxfire and could find no way to create folders for bookmarks. I tried the "Show all bookmarks" under the "Bookmarks" menu and then hold down "Control" while touching t

  • KM Doc iView to display in HTML format

    Dear KM friends I created a KM Document iView to display a MS Excel file. My requrirement is 1. I want to diplay that iView on click on HTMLB link 2. I want to display that MS Excel file in HTML format, just like a link in Search result. plz reply me

  • Show field mara-MFRPN in the MP02 without double click

    Hi all, Anyone know how to show field mara-MFRPN in MP02? I know that once we enter the internal material, it will show a list of MPNs, but in order to view the vendor manufacturer part number, we need to double click on each of it. How can we view m

  • Bootcamp XP partition size for OCR software and Outlook

    Hello, I need to run OCR software (Abbyy Finereader 9) and Microsoft Outlook email on my Mac. How much space should I partition for Windows XP when setting up Bootcamp? I will eventually use Parallels/VMwareFusion. Specs needed for OCR: 512 MB of RAM

  • Tables in b2b

    Hi, there is some basic missing concept from B2B developer guide, we can learn all, but DB table part is missing, i did nt found any material for that. can any one please tell me about basic DB architecture of B2B, what all table involve in it. I nee