You may try:
- Open your DAP tool or interface.
- Use DAP to download your tables of interest
- Choose the TSV format option for the download.
- Start the download process.
After downloading the data, you need to create and configure a .ctl (control file) for use with the Oracle SQL*Loader, which allows you to load data from external files into tables in the Oracle database.
A control file (.ctl) is a text file that contains the instructions for SQL*Loader about how to map the input data to the database columns and various loading options.
Example of a .ctl file content:
LOAD DATA
INFILE 'example.tsv'
INTO TABLE your_table_name
FIELDS TERMINATED BY '\t' TRAILING NULLCOLS
(
column1,
column2,
column3 DATE "YYYY-MM-DD",
column4
)
The use the loader:
sqlldr userid=your_username/your_password@your_database control=your_control_file.ctl log=load.log