|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 5/19/2008 7:16:02 AM
Posts: 2,
Visits: 19
|
|
Hi All,
Can we use CASE statement in a fastload script. I want to check for zero length string. Is it possible to use some thing like this
CASE(LENGTH(:input_string)=0) Then 'UNKNOWN' Else :input_string
Please advise.
Thanks,
Amit
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 5/4/2008 3:57:27 AM
Posts: 5,
Visits: 43
|
|
You can't use case statement directly in the fastload script.
It is possbile for you to embed INMOD into fastload to do such transfer job.
Or you can use NULLIF in the define section.
But with this method, the input field containing the specified value should be treated as NULL...
|
|
|
|