How to load multiple datafile into one table? [message #63573] |
Mon, 18 October 2004 02:13 |
LEE SHIN YOUNG
Messages: 4 Registered: October 2004
|
Junior Member |
|
|
hi! I want to load two datafile into one table by control file.
for example, TPD71M$AUD.prn is 2 rows and
TPD72M$AUD.prn is 3 rows. then tpd71m$audTemp table is 5 rows. So next control file is it possible?
Please help me...
LOAD DATA
INFILE 'E:TPD71M$AUD.prn'
INFILE 'E:TPD72M$AUD.prn'
INTO TABLE tpd71m$audTemp
(Pj_Cd POSITION(01:10) CHAR,
Curr_Sts POSITION(12:13) CHAR,
Pj_Chrct POSITION(20:21) CHAR)
|
|
|
|