SQL Server nvarchar(max) fields are truncated (1 Viewer)

mdlueck

Sr. Application Developer
Local time
Today, 00:53
Joined
Jun 23, 2011
Messages
2,631
But ... try to link you SQL Server table to Access and see - the (n)varchar(max) field is truncated...

Ohhhh... Then I am glad I avoided completely Linked Tables in my application!

I saw them as a security risk.

My application makes use of all Stored Procedures to obtain access to the SQL BE DB, and when needing to populate a FE temp table, then I download the record(s) to the FE temp table and bind Access Forms to the Access FE temp tables through DAO.QueryDef objects... which are dynamically created on-the-fly.
 

valeryk2000

Registered User.
Local time
Today, 00:53
Joined
Apr 7, 2009
Messages
157
Guys, I found the solution (probably just for SS2K8 and earlier versions) - I changed datatype from nvarchar(max) to text - and now everything works ok.
Thank you for having fun with me!
Val
 

Users who are viewing this thread

Top Bottom