Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
70 views

Dynamic SQL-Loader control file

I have 20 tables that are temp-tables where we load and validate data constantly and I have a control file for each table. How can I have a unique control file that just changes the table the data is ...
1
vote
2answers
4k views

How to recreate an oracle 9i database from backup files (ora files)

I'm a developer so I'm a little lost in the DBA world. Our systems guys have given me a backup of an Oracle 9i database. I have installed oracle 9i on my pc and am now trying to 'import' the backup ...
0
votes
0answers
5 views

How to use NewFormat to convert from old version to new version of Transims?

I'd like to know how to use the NewFormat to convert from old version to new version of Transims. So can anyone explain it to me? It would be more than helpful if we can have a sample of the control ...
0
votes
2answers
98 views

SQL LOADER CONTROL FILE

I have this loader control file. LOAD DATA REPLACE INTO TABLE TEST WHEN TEST_CD != 'A' AND TEST_CD = 'B' AND TEST_TYPE_CD = 15 Currently its loading data when TEST_CD = 'B' AND TEST_TYPE_CD = 15 ...
0
votes
1answer
934 views

SQL Loader script help with adding SYSDATE, USER

I'm trying to load data from a file and I want to set CREATED_DATE and UPDATED_DATE to SYSDATE and CREATE_BY and UPDATED_BY to USER Here the table that I'm working with: CREATE TABLE CATALOG (CNO ...
0
votes
1answer
1k views

TimeStamp in Control File

I have a script that takes a table name and generates a control file by querying all the columns/rows the table. This works fine for numeric and character data but fails on timestamp data so I need ...