I used the import/export utility in Sql Server 7.0 to export
the data in one of my MS-Access databases to SQL 7.0. The utility
indicated all went well. Now if I try and use either ISQL or ODBC to
see the data in some tables (not all) I get the following error:
Msg 4004, Level 16, State 1, Server WVTORSQL1, Line 1
ntext data can not be sent to clients using DB-Library (such as ISQL)
or ODBC version 3.7 or earlier.
All of my tables are pretty generic and quite similar. I tried to find
a pattern in the good vs bad tables, but I can't see any. Any thoughts
or resolutions on this problem would be muchly appreciated...
tanks in advance
John Casey
Applications Support Specialist
Working Ventures Canadain Fund Inc.
Regards,
Alexey Dolganov,
MCP,
Moscow, Russia
Thanks Again
<b>text</b> - for text data similar to <b>memo</b> field in Access or
Visual FoxPro
<b>image</b> - for storing binary data similar to <b>General</b> field
in Access or Visual FoxPro
<b>ntext</b> is a variant of text that allows you to store unicode text
& the maximum characters is half of that of text data type i.e. 2 power
30 -1. This is the same as the ANSI <b>national text</b> data type.
--
Umachandar Jayachandran
MCDBA, MCSE + Internet, MCP + Internet, MCSE
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
Cheers ;o)
P.S. hmmmm, question. If I use a text datatype in SQL 7.0 to equate to
an MS-Access memo field and set the length to 1000 or 2000 (room
required for memo). Will SQL set asside 1000-2000 bytes for each
record used or not? Should I used one of the Var data types?
John Casey
Applications Support Specialist
Working Ventures Canadian Fund Inc.
Regards
Bronek Kozicki
John Casey wrote in message <376a81e8.331517176@wv-proxy>...