I want to load data from text file to table and those record which column_m = Null and filter out reaming record. 
When I tried with
column_3 = '' 
column_3 = Blanks
Both are not working
It's only working with when give the position but my data file is not fixed size, so it will not work.
data file
-------------
col 1 | col2 | col 3|
---------------------
1001 |  TM  |RmRK |
1002 |  KL  |21   |
1004 |  KL  |     |
1005 |  KL  |     |
1006 |  MH  |NED  |
How should I insert those record which col3 = NULL and filter the reaming record?