How to unload data

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Julia Sats

    How to unload data

    Hi,

    Oracle contains SQL*Loader for loading data to Oracle.
    Does exis any tool for quickly unload (extract data) from Oracle's table to
    TXT file, preferable to comma separete format.

    I can use for it UTL_FILE but I need to work with every record of the table.

    Thanks


  • Ana C. Dent

    #2
    Re: How to unload data

    Julia Sats wrote:
    Hi,
    >
    Oracle contains SQL*Loader for loading data to Oracle.
    Does exis any tool for quickly unload (extract data) from Oracle's table to
    TXT file, preferable to comma separete format.
    >
    I can use for it UTL_FILE but I need to work with every record of the table.
    What wrong with SQL*Plus or Read The Fine Archives
    where this question has been asked & answer NUMERSOUS
    times recently.

    Comment

    • Daniel Morgan

      #3
      Re: How to unload data

      Julia Sats wrote:
      >Hi,
      >
      >Oracle contains SQL*Loader for loading data to Oracle.
      >Does exis any tool for quickly unload (extract data) from Oracle's table to
      >TXT file, preferable to comma separete format.
      >
      >I can use for it UTL_FILE but I need to work with every record of the table.
      >
      >Thanks
      >
      >
      >
      spool

      --
      Daniel Morgan
      We make it possible for you to keep learning at the University of Washington, even if you work full time or live outside of the Seattle area.

      We make it possible for you to keep learning at the University of Washington, even if you work full time or live outside of the Seattle area.

      damorgan@x.wash ington.edu
      (replace 'x' with a 'u' to reply)

      Comment

      • paul sun

        #4
        Re: How to unload data

        if you have MS Access, it will be quite simple. go to access----
        select open, select ODBC as source, put the table(s) you want to
        export into the access.---choose export option from access---then
        simply following the wizard to finish the rest.

        good luck!


        "Julia Sats" <julia.sats@sym patico.cawrote in message news:<Pqw5b.889 0$Kj.919894@new s20.bellglobal. com>...
        Hi,
        >
        Oracle contains SQL*Loader for loading data to Oracle.
        Does exis any tool for quickly unload (extract data) from Oracle's table to
        TXT file, preferable to comma separete format.
        >
        I can use for it UTL_FILE but I need to work with every record of the table.
        >
        Thanks

        Comment

        • Turkbear

          #5
          Re: How to unload data

          jsun@staffordbc .gov.uk (paul sun) wrote:
          >if you have MS Access, it will be quite simple. go to access----
          >select open, select ODBC as source, put the table(s) you want to
          >export into the access.---choose export option from access---then
          >simply following the wizard to finish the rest.
          >
          >good luck!
          >
          >
          >"Julia Sats" <julia.sats@sym patico.cawrote in message news:<Pqw5b.889 0$Kj.919894@new s20.bellglobal. com>...
          >Hi,
          >>
          >Oracle contains SQL*Loader for loading data to Oracle.
          >Does exis any tool for quickly unload (extract data) from Oracle's table to
          >TXT file, preferable to comma separete format.
          >>
          >I can use for it UTL_FILE but I need to work with every record of the table.
          >>
          >Thanks
          Or, to avoid reading the data twice, look into the SPOOL command and create your file from SqlPlus:

          Example follows ( not to be actually used as it is not precise or the best way and, of course yours will vary)
          set heading off
          set lines 1000
          set pagesize 0
          set termout off
          set feedback off
          spool "c:\mydir\datat able.csv"
          set colsep ","
          select * from mytable;
          spool off





          Comment

          Working...