SQL Loader multiple infiles in single control file [message #74712] |
Mon, 07 February 2005 11:28 |
Tony
Messages: 190 Registered: June 2001
|
Senior Member |
|
|
Hi,
I have a control file established for each infile.
ex:
load data
infile 'load_multum_unit.txt'
append into table temp_multum_unit
fields terminated by ";" optionally enclosed by '"'
(
M_UNIT_ID,
ABBREVIATION,
DESCRIPTION
)
Can I specify multiple infiles in the same control file even though the data in each infile is for a different table?
ex:
load data
infile 'load_multum_unit.txt'
append into table temp_multum_unit
fields terminated by ";" optionally enclosed by '"'
(
M_UNIT_ID,
ABBREVIATION,
DESCRIPTION
)
load data
infile 'load_multum_clinical_route.txt'
append into table temp_m_clinical_route
fields terminated by ";" optionally enclosed by '"'
(
ROUTE_CODE,
ROUTE_DESC
)
Thanks!!
|
|
|
|