I am having trouble using "Export dataset" feature in TOAD 14.0.75.662.
If there are two null following null value columns in a row, TOAD 14 does not export the row with the correct number of delimiters.
Example:
SELECT 1 as row_number, 1 as col1, 'One' as col2, 1.1 as col3 from dual
union
SELECT 2 as row_number, null as col1, '' as col2, 2.2 as col3 from dual
union
SELECT 3 as row_number, 3 as col1, 'Three' as col2, null as col3 from dual
union
SELECT 4 as row_number, 4 as col1, '' as col2, 4.4 as col3 from dual
order by 1
TOAD 14 exports (using Pipe delimiter)
"ROW_NUMBER"|"COL1"|"COL2"|"COL3"
1|1|"One"|1,1
2||2,2
3|3|"Three"
4|4||4,4
So in row_number 2 the value of COL3 is put into COL2.
TOAD 13 correctly exports this:
"ROW_NUMBER"|"COL1"|"COL2"|"COL3"
1|1|"One"|1,1
2|||2,2
3|3|"Three"|
4|4||4,4