try exporting this...
select
null as temp1,
null as temp2,
isnull(null,'') as temp3,
isnull(null,'') as temp4
since its a text stream that is being written, instead of streaming a 'null' text it will be written as blank only when it is <null>
If thats not what you are looking for please let...