Query to do import and Export for Oracle 10g

For MYSQL we have queries available for import and export
import:-LOAD DATA INFILE 'filename' INTO TABLE tablename FIELDS TERMINATED BY ','
export:-SELECT * into OUTFILE 'file name' FIELDS TERMINATED BY ',' FROM tablename
Do we have similar query in Oracle which can be executed on SQL * Plus

Is it a feedback opinion you want to get/put ?
If not, then use a proper forum, which you can find somewhere here below :
http://forums.oracle.com/forums/category.jspa?categoryID=18
Maybe Database General is the one for your question.
By the way, explain where you get the data from (flat file -sqlldr - or dump file -imp -?), and where you want to put the data (flat file - select - or dump file -exp - ?), be sure you know the format of file of your output.
Nicolas.

Similar Messages

  • Find import and export for method

    Hi,
    i wont to use method in se24 , how i now the import and export and ... for Method?
    Regards

    Hi,
    for an easy use of methods i recommend using the button "pattern" in SE80. If you choose "ABAP Objects Patterns" the source of a method call is generated and all existing Parameters are listed.
    You can display the parameters also within SE24. Call the Class of the Method. Then click on "Methods". Set the mouse focus on the method you are interested in and click the button "Parameters".
    Hope this helps!
    Regards
    Mark-André

  • User name and password for oracle 10g

    Hi Guys,
    I downloaded oracle 10g and installed on my computer but when i try to work on SQL plus it's asking for an username and password, i tryed as scott/tiger,system/manager but unable to login please help me what to do...??

    When u install Oracle 10g, it forces u to enter new passwords for System as well as scott user and it does not allow u to keep old know passwords as manager and tiger.
    If u installed with new passwords successfully, u must be knowing those new passwords and there is no reason to try with system/manager. Instead try to connect with new passwords. We never faced such problems.
    If the problems still persits, check that
    a) Oracle service is running
    b) Instance is running by and whether u are able to connect / as sysdba
    Suresh Bansal

  • Default username and password for Oracle 10g

    I have installed Oracle 10g Standard edition on my PC, but do not know the username and password to login. Does anyone know the username and password?
    Thanks,
    YR

    Hello,
    Did you create database using dbca after installation or you choose to created during install?
    If you did you can create scott schema using this
    sql> @\Oracle\product\10.2.0\...\RDBMS\ADMIN\scott.sql
    You can login as sysdba and see if scott user created for you, offcourse if you have created database using DBCA or during isntall in first place.
    sqlplus "/as sysdba"
    Sql> select username , status from dba_users where username='SCOTT';
    I strongly recommend you to create new database using DBCA and it will let you walk thru all the steps.
    Regards
    Edited by: OrionNet on Mar 2, 2009 11:50 AM
    Edited by: OrionNet on Mar 2, 2009 11:52 AM

  • Import and export with oracle 9i

    Hi
    What is best method for to export and impor data from/to text file with oracle 9i,
    I used sql loader in 8i , is there others methods ?
    where can I to find examples ?
    tia

    By taking a look at the user documentation?
    Oracle9i Database Utilities
    C.

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

  • Import and Export  of  R prediction model

    hi ,
    How can i  import and export a oracle R prediction model   e.g  from/to file ?   Basically,   We need it for the following requirements
    1.  We would like to ship a sample prediction model as part a  product.      So, The product will work with sample prediction model for some time after install    till a  newer model is created   with data  in customer env.
    2. Before regenerating a prediction model,   we would like to  take a backup of the existing prediction model.   And if it turns out that  the prediction results are not as good  with new model,  we should be able  to reinstate the older model.
    3. Support a mode where oracle R prediction model can be loaded to an  environment  which is different from the  the source environment where the model was actually generated.
    Please advise
    Regards,
    Arif

    I tried the above method  but  i am facing an issue that  although the prediction model is imported in to R  using load command,   it  is not loaded in ORE environment.     Due to this i am not able to use the imported predictionmodel for scoring
    I tried the following
    #Generate the prediction model
    >  PREDICTIONMODEL <-  ore.odmKMeans(data= TEST_DATA_TABLE, formulat=  COLUMN1 ~ . )
    >  class(PREDICTIONMODEL)
    [1] "ore.odmKMeans" "ore.model"
    >  save( PREDICTIONMODEL,  file="test.model")
    After this i quit the R session  (without saving my workspace)   and then   create a   new R session  and tried the following
    # load a prediction model from a file
    > load(file="test.model")
    > ls()
    [1}  "PREDICTIONMODEL"
    > ore.ls()
    charcter(0)
    You can see from above that  ore.ls() is not printing anything after load(). However,  ls()  prints the loaded  PREDICTIONMODEL.    Now, if i try to do scoring against the loaded predictionmodel,  I get an error
    >  x <- data.frame(COLUMN2="CC_PROCESSING", COLUMN3="CallWorkflow", COLUMN4="CallWorkflow", COLUMN1=NA)
    > X <- ore.push(x)
    >
    > result<- ore.predict(PREDICTIONMODEL, X)
    Error in .oci.GetQuery(conn, statement, data = data, prefetch = prefetch,  :
      ORA-40284: model does not exist
    So, it seems that  even though i imported the  model from the file,  ORE is still not aware of it .   Any idea about this ?

  • 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

  • Issue while importing table from oracle to sql server using import and export wizard

    Hi All,
    I am trying to populate oracle table to sql server using import export wizard  and i am getting the below error.the table is allready present in the database but still it throwing error like table doesn't exists.
    Could not connect source component.
    Error 0xc0202009: Source - JOB_ACTION_HISTORY [1]: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    Error 0xc02020e8: Source - JOB_ACTION_HISTORY [1]: Opening a rowset for ""FLXUSER"."JOB_ACTION_HISTORY"" failed. Check that the object exists in the database.
     (SQL Server Import and Export Wizard)
    Kindly help me out
    Thanks in advance

    Hi Snehasis,
    Please check whether the table name in the Oracle database has lower case letters. The table name should be exactly correct. 
    In addition, the issue might be related to the Oracle driver. What provider/driver do you use? If you use Microsoft OLE DB Provider for Oracle, you can try the
    Oracle OLE DB Provider. If you use Enterprise or Developer edition of SSIS 2008 or higher, you can also try the
    Microsoft Connectors for Oracle by Attunity. The  Oracle OLE DB Provider and Microsoft Connectors for Oracle are proved to have better performance.
    Regards,
    Mike Yin
    TechNet Community Support

  • Looking for a program that can handel import and export of palm doc files

    I am looking for a program that can handel the import and export of palm doc Files that can convert them to to either txt or RTF files for Vista 32, running Palm Desktop 7.1.
    Could anyone give me a few suggestions of any plug-ins that would be good me?
    Hearns
    Post relates to: Palm IIIxe
    This question was solved.
    View Solution.

    Ok, you need to clean uninstall Palm desktop 6.2. Install Palm desktop 4.1.4 and download and install documents to go version 6.
    Here are the clean uninstall instructioins for Vista.
    You should first make a copy of your data to have just in case something
    happens. You can find your data files by going to Start --> Documents -->
    Palm OS Desktop. Highlight your Palm Desktop username and right click and
    copy. Then go to your PC desktop right click on a blank spot and select paste.
    If this is the first time you are installing Palm desktop and encountering a problem, skip the previous step.
    Now you want to uninstall Palm Desktop and remove everything that has to do
    with Palm Desktop from your computer.
    Go to the following locations on the PC and delete the folders listed below.
    C:\Program Files\Palm or Palm One
    C:\Users\[Vista Login Name]\appdata\local\virtualstore\Program Files\Palm or
    PalmOne
    C:\Users\[Vista Login Name]\appdata
    *Note you may need to view hidden folders to get to appdata. To do that go
    into your control panel and open folder options. Go to view tab and uncheck
    hide hidden files.
    Once this is done you will need to delete some registry keys from your PC Operating System.
    Word of warning, going here and deleting the wrong thing can cause your PC
    from starting up, crashing and deletion of programs and data. If you feel
    you are unsure of yourself, see if you have a friend that can help you or a
    PC technician that you can pay to help you. This procedure will show them everything they need to delete. To make sure we have a good copy of the current registry, we need to do a backup of the Registry.
    Go to start on the PC, in the search field type "regedit.exe" without quotes.
    Highlight COMPUTER, go to File --> Export. Should pop up with a Save As box.
    Current location is fine, should be in My Documents or save to a location you will remember. In the file name on the bottom type "backup[todaysdate]" i.e. backup07072008. Next, the hard part.
    The easiest way to make sure your working with the correct key, highlight the key i.e. palm quick install, and press delete on your keyboard. It will ask you, are you sure. Say yes. Do the same thing for all keys below.
    If you make a mistake, stop what you are doing. And call a PC technician.
    BUT do not turn off your computer.
    The reg keys are as follows (Note: some of theses reg keys will not be here
    but if they are delete them)
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Palm Quick Install
    * HKEY_CURRENT_USER\Software\U.S. Robotics\PalmOne File Transfer
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop
    * HKEY_CURRENT_USER\Software\Palm
    * HKEY_CURRENT_USER\Software\Palm, Inc.
    * HKEY_CURRENT_USER\Software\PalmDesktopAutorun
    * HKEY_CURRENT_USER\Software\palmOne
    * HKEY_CURRENT_USER\Software\PalmSource
    * HKEY_LOCAL_MACHINE\Software\PalmSource or anything else that says palm
    Next reboot your computer.
    Then reinstall your palm desktop from the CD and do a hotsync. Use the username that is on the handheld.

  • Is it possible to import and export dump between oracle 9 and oracle 11?

    Is it possible to import and export dump between oracle 9 and oracle 11?
    Source DB : Oracle 11g(unix0
    Oracle client : Oracle 9(Windows)
    Export import utility : Oracle 9's
    Destination DB : oracle 9

    I am getting the Following Error and export utility is not responding after this.
    Export: Release 9.2.0.1.0 - Production on Thu Jul 15 14:37:01 2010
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    server uses AL32UTF8 character set (possible charset conversion)

  • Import and export xml file in Oracle

    Hi Gurus,
    Can any one explain , how can we Import and export an XML file in Oracle Please
    Thanks

    Some examples can be found on this {thread:id=410714} forum and also on [Marco&apos;s blog|http://www.liberidu.com/blog/] (He's an Oracle Ace in the {forum:id=34} forum)

  • No data source - OLE DB provider for ODBC is not shown in import and export wizard

    Dear Sirs,
    Would you please let me know how to activate the OLE DB provider for ODBC in import and export wizard?
    Now I could use .NET framework for odbc only but it seems have problem in mapping table fields.
    Please advise.
    Thanks & Regards,
    Clara

    see this
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms712975(v=vs.85).aspx
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Nokia Photo Transfer for Mac - import and export y...

    Hi, Nokia has published new Nokia Photo Transfer for Mac application, which allows importing and exporting photos and videos from Nokia Lumia with Windows Phone 8 smartphones to Mac.
    - Importing photos and videos from your Nokia Lumia with Windows Phone 8, for example Nokia Lumia 1020, to your Mac
    - Exporting photos and videos from Mac to your Nokia Lumia with Windows Phone 8
    - Deleting photos and videos from the phone.
    - Nokia Photo Transfer for Mac supports also full resolution photos taken with Nokia Lumia 1020; photos taken with Nokia Smart Cam and Nokia Smart Shoot applications; photos taken with Nokia Cinemagraph application.
    You can download Nokia Photo Transfer for Mac from Nokia Photo Transfer for Mac web pages.
    Nokia Photo Transfer for Mac supports Nokia Lumia smartphones with Windows Phone 8 operating system. Supported operating systems for Mac are Mac OS X 10.8 Mountain Lion and Mac OS X 10.7 Lion. You need to have compatible USB cable for your Nokia Lumia smartphone.
    Let us hear what you think about the application. Nokia Photo Transfer for Mac informs you about new updates automatically.
    Cheers, Samuli

    Ultimateone wrote:
    I believe that after the OS Mavericks came out that this app is NOT broken.
    Not mentioned as compatible in this link: http://www.nokia.com/gb-en/support/product/nokia-photo-transfer-for-mac/ and no longer works upon Mavericks for me!
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Itunes keeps telling me "the registry setting for importing and exporting and burning cds are missing" reinstall itunes.  I have reinstalled itunes about 30 times and still get the same message.  I do not have another cd burning software loan

    I keep getting the message "the registry settings for importing and exporting and burning cds are missing. Please reinstall itunes. This may be the result of other cd burining software on your computer"  I do not have another CD burning software on my computer and have reinstalled itunes about 30 times and still get the same message and am not able to burn CDs.  All of my drivers and firmware are up to date. Please help

    Check out this Apple article -> iTunes for Windows: "Registry settings" warning when opening iTunes
    The article will walk you through reinstalling iTunes and then checking for or creating device filters. Did it help? Did you run into any problems?

Maybe you are looking for

  • CUA history for child systems

    Hi all I have seen quite a few forum entries about change history and tables to see the mapping of roles to users, such as: Table AGR_USERS (actual assignments) Table USLA04 (actual assignments in a CUA central system) SUIM report RSSCD100_PFCG for v

  • I want to enable accounting in my ACS 4.1

    Hi everyone: I have a issue, at this moment i have my ACS 4.1 running with authentication and authorisation. Also in a Switch i have the next lines: aaa accounting exec default start-stop group tacacs+ aaa accounting commands 1 default start-stop gro

  • HT203433 iTunes started Re-Downloading songs

    For some reason, the iTunes store started re-downloading about half the songs I've purchased, which is now turning my phone into a data-burning, battery burninng brick.  This is about 38 songs that I already downloaded onto my phone, and now they kee

  • AE CC Slow after latest update?

    I've noticed since the most recent CC update that AE is really unresponsive.  Long delays to clicks.  Saves take a few seconds.  Nothing changed on this editing station but the AE CC update.  Win 7 64bit Pro 32GB RAM 2GB Nvidia USB3 drives Same as al

  • Installing Classic on a Mini... not all it's cracked up to be

    Ok, I finally figured out that the #2 Install Disc that came with my Mini contains OS 9. I proceed to click on the installer icon, the process begins, and when I get to teh "Installation Type" step, things break down. I'm looking at a list of Mac OS