is it possible to write a ctl file such that if a certain criteria is met, sqlldr will insert into a certain table else it will not insert into that table?
eg
in the ctl file
load data
infile 'data.txt'
append into table table1
(
...
someflag postition(...) char,
...
)
append into table table2 only if :someflag is of a certain value
(
..
)
possible to achieve?
eg
in the ctl file
load data
infile 'data.txt'
append into table table1
(
...
someflag postition(...) char,
...
)
append into table table2 only if :someflag is of a certain value
(
..
)
possible to achieve?