SQLLDR WHEN condition with IN CLAUSE [message #471986] |
Wed, 18 August 2010 04:08 |
palanisvr
Messages: 21 Registered: March 2007
|
Junior Member |
|
|
Hi Gurus ,
I have a requirement where i have to insert data using sqlloader where it does not satisfies the condition.
It should work like the below but the below condition is giving syntax error. PLease let me know if you any idea.
Thanks in advance..good day.
LOAD DATA
INTO table emp
WHEN location NOT IN ( 'USA' , 'UK' ) AND EMP_NO NOT IN ( 102 , 101)
(
ename ,
..........
..........
)
|
|
|
|
|
|
|
|