Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Null Value

Hi all,

How can i load data without null values

SRS

3 Replies
Jason_Michaelides
Luminary Alumni
Luminary Alumni

Maybe put WHERE IsNull(YourField)=0 in your load statement?

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

HI,

   You can achieve this in this way.

    Load * from ABC where not isnull(Field1);

   Here Field1 is the field from which you dont want the null data.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

Hi,

Load * from Table_Name where Field_Name <> ' ' ;

Hope it helps

Regards

Ravikumar