Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I want to exclude values that contain say 'ABC' in the string during Load Script.
Thank you.
Siddhesh
Use where clause like:
Load
...
From <> Where not Wildmatch(FieldName, '*ABC*');
Or,
From <> Where not FieldName Like '*ABC*';
Use where clause like:
Load
...
From <> Where not Wildmatch(FieldName, '*ABC*');
Or,
From <> Where not FieldName Like '*ABC*';
Thanks a lot.