oracle - Sqlloader when clause to include null -


i trying load data table, data source has footer record want remove , null values want loaded

my control file has:

echo "when field1 <> 'footer'" 

but discarding null records (all others working expected).

is there way include 'or' operator, or running 2 step load inside single control file e.g. step 1. process records except 'footer' step 2 - process null records.

you can try this...

load data infile ... table ... ... ... when some_column != 'footer' ... fields terminated ', ' 

Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -