Hi All
I want to find out is that how to give a condition is sqlldr
load data
infile 'file.TXT'
into table abc.table
when
upc_id > 99
append
(upc_id position(1:10),
..
SQL*Loader: Release 9.2.0.4.0 - Production on Tue Feb 12 15:23:29 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
SQL*Loader-350: Syntax error at line 5.
Illegal combination of non-alphanumeric characters
upc_id > 99
^
What will be the best to use less then also i know that i can use 'and' but 'or' can't be used there
Regards,