Hello Pervasive.SQL experts,
I am trying to export some data from a table using the export wizard (Task/Export Data). All is well with this except some problem on the output where a "0" is added in front of nullable column causing an extra data column for each nullable. To illustrate:
MyTable
Field type null
Col1 integer N
Col2 integer Y
Col3 integer Y
Sample data:
1 1 1
2 2 2
3 3 3
If I export this data with table column on first row option (to say MyTable.csv), the output will be like this:
"Col1","Col2","Col3"
"1","0","1","0","1"
"2","0","2","0","2"
"3","0","3","0","3"
If I try to load this file into another program, say Excel, the Column and Data won't match because of the extra zero's for the nullable columns.
I understand that this is the extra byte used to signal nullability of a column. Thus, it should be treated as 'internal' data and not exported. So, is there a way to make (or force) the Export wizard not to export the "0"'s ?
Note: Converting tables using Null Conversion utility is not possible in my situation.
Many thanks in advance.
_msd_