- Posts: 15
- Thank you received: 0
Extracting a full table from SQL server
10 years 9 months ago #5878
by Derec
Extracting a full table from SQL server was created by Derec
I have an issue if I extract a full table from SQL server it shows several columns as blank even through they have data... If I extract just those columns the data shows up correctly.
Any help around this would be great, I am now running version 5.6.1.3
Derec
Any help around this would be great, I am now running version 5.6.1.3
Derec
Please Log in or Create an account to join the conversation.
10 years 9 months ago #5879
by admin
Mike
ETL Architect
Replied by admin on topic Re: Extracting a full table from SQL server
What are the field types?
Mike
Mike
Mike
ETL Architect
Please Log in or Create an account to join the conversation.
10 years 9 months ago #5880
by Derec
Replied by Derec on topic Re: Extracting a full table from SQL server
Hi Mike,
I have resolved the issue it was to do with text types and varchar types.
Thanks,
Derec
I have resolved the issue it was to do with text types and varchar types.
Thanks,
Derec
Please Log in or Create an account to join the conversation.
10 years 9 months ago #5881
by admin
Mike
ETL Architect
Replied by admin on topic Re: Extracting a full table from SQL server
I see...
It is a feature of SQL server ODBC driver
Basically if you have blob fields eg ntext,text etc
You should put them last in the sql, otherwise it will not work.
eg
select integer_field, varchar_field, text_field from table
Mike
It is a feature of SQL server ODBC driver
Basically if you have blob fields eg ntext,text etc
You should put them last in the sql, otherwise it will not work.
eg
select integer_field, varchar_field, text_field from table
Mike
Mike
ETL Architect
Please Log in or Create an account to join the conversation.