Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
I haave a table called tempPostal which contains pincode, lonitude, latitude and coordinates(concat of long and lat). There are few rows where lon and lat are null. I want to filter out those records from tempPostal and have only valid data in it.
How do i achieve this?
Thank you.
Hi,
You can do this at script level
Add where clause like
Where lonitude<>'' or latitude <> ''
Regards,
Hi Pramod, PFA.
Thanks,
Ram
In the load script at the very end of the FROM clause add in
Where Len(Trim(Field)) > 0 ;