Nice tool! Hopefully, you can fill me in on the following and tell me (if anything!) what I'm doing wrong.
I'm doing an ODBC import w/ a SQL Select, importing data from a remote Oracle 8 DB to a MySql dB hosted locally. All seems to go fine (no errors). When viewing the imported table, however, it seems that any field that had a NULL value in the original table will subsequently render the rest of the fields imported after that field NULL as well.
For example:
FirstName LastName Age Sex
John Smith 17 M
Jane Smith NULL F
Jack Smith NULL M
Jane Smith has no age value in the original table, but Jack Smith does, yet the NULL value from Jane's record is carrying over to Jacks' record, and so on.
Any ideas?