From:       To:      

Oracle to CSV

[Download
Latest version 2.1 released 10/16/2017

Oracle-to-CSV is a free program to export Oracle data into comma separated values (CSV) files. The program has high performance due to direct connection to source databases and writing into .csv files (it does not use ODBC or any other middleware software). Command line support allows to script, automate and schedule the conversion process.

Features

  • All versions of Oracle servers are supported (including 12g)
  • Option to convert individual tables
  • Option to convert partial data using SELECT-queries
  • Option to select separator: tab, comma or semicolon
  • Option to store conversion settings into profile
  • Command line support
  • Easy-to-use wizard-style interface
  • Full install/uninstall support
  • Unlimited 24/7 support service
  • Freeware!

Requirements

  • Necessary privileges to read the source database on Oracle server
  • Supported OS: Windows XP(SP2 or SP3)/2003/Vista/Server 2008/7/8/10, Linux with WINE
    
1. Welcome Screen 2. Connect to Oracle server
3. Conversion Settings 4. Select Tables

Download Oracle-to-CSV converter

Command Line

To perform batch conversion or call the conversion procedure from an automation script you can use console version of Oracle-to-CSV O2CAGENT.EXE. Find this file in Oracle-to-CSV installation folder. You can either run this tool directly from command line or call it from any script as well. The program supports the following command-line options:

--dest=...   path to the folder with .csv files
--help   display help message and exit
--host=...   Oracle server IP address or network name
--inc_fnames   include Oracle field names into CSV files
--logfile=...   path to the log file where execution traces will be written
--mode=...   how to process an existing CSV folder (0 - overwrite the entire folder, 1 - overwrite existing files only, 2 - skip existing files)
--n_delim=...   delimiter symbol to use in the resulting CSV file (0 - tab, 1 - semicolon, 2 - comma)
--port=...   Oracle port
--profile=...   path to the file to load conversion settings from
--pswd=...   Oracle user password
--silent   use this option to disable program output
--src=...   Oracl3 database name
--tab_file=...   file containing the list of tables to convert
(one table name per line)
--user=...   Oracle user name

In the following example the program converts Oracle database "db1" on the remote Oracle server "oraclehost" into .csv files in folder "c:\from oracle" using table names file "c:\tabfile1.txt":

O2CAGENT.EXE --src=db1 --dest="c:\from oracle" --host=oraclehost --user=SYSTEM 
--pswd=the_passsword --tab_file=c:\tabfile1.txt 

Table names file should be formatted as follows:

Table_1
Table_2
...
Table_N

Notes:

  1. You can omit 'host' parameter to connect local Oracle server
  2. It is necessary to specify 'port' parameter only if it differs from the default Oracle port 1521
  3. If you omit 'tab_file' parameter, all database tables will be converted
  4. Command line parameters that contain spaces should be enclosed in quotes (for example --dest="c:\my database")
  5. If you omit 'mode' parameter, default mode 'overwrite the entire folder' will be used

Download Oracle-to-CSV converter

Using Queries

Queries give you the ability to extract partial data for converting into .csv format. The following examples are provided to illustrate how to use queries for particular purposes. Assume that we have table "Table1" as below:

   Table1(
	ID INT NOT NULL AUTO_INCREMENT, 
	FName NVARCHAR(50),
	LName NVARCHAR(50), 
	Birthday DATE, 
	Notes CLOB
   );

Example 1. Convert certain records.

    SELECT * FROM Table1 WHERE ID > 1000

Example 2. Choose and rename columns.

    SELECT FName as FirstName, LName as LastName FROM Table1

Example 3. Skip records containing NULL values.

    SELECT * FROM Table1 WHERE Notes IS NOT NULL

Download Oracle-to-CSV converter