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 to adjust the script to output the timestamp data into the control in such a way that it can be read in properly.
So essentially, my questi...
            
           
          
            
            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 files so I have a normal database to work with.
The backup folder has on SNCF[SID].ora file and around 150 [SID]-[Date]-[counter]-[soemnum...
            
           
          
            
            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 NUMBER,
CTITLE VARCHAR2(25),
CREATED_BY VARCHAR2(10) NOT NULL,
CREATED_DATE DATE NOT NULL,
UPDATED_BY VARCHAR2(10) NOT NULL,
UPDATED_DATE DAT...