Regarding:
The .import cmd has a problem when it encounters binary zeros
embedded in data.
....
I should think this would be considered a bug.
Hi Jim,
While you can file a ticket for this, I wouldn't be shocked if it others
disagreed.
The command line utility requires ASCII input, and binary zeroes are not
allowed. (Similarly, skipping just one field separator out of millions
will prevent an import -- one must supply clean data to achieve an
import.)
It should be quick and easy to remove all nulls from your input. One
option is the GNU utility "gsar"
gsar -s":x00" -r" " input.txt output.txt
[opinions are my own, not those of my company]
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------