Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friends,
I have huge date in below manner, I only required the data begning with the word "Stevedorage_".
what to do ?
|
Hi,
if your field name is [Item Description] then try this on load script:
load
*
From table
where [Item Description] = 'Stevedorage_*'
Hope this helps you.
Regards,
Ashutosh
Hi Neeraj,
You can try like this in the script
Load
*
from table
where wildmatch(itemdescription ,'STEVEDORAGE_*');
Thanks & Regards,
Udit
Use below:
LOAD * FROM table WHERE WildMatch(Fieldmatch,'Stevedorage_*');