SET ANSI_NULLS ON
SET ANSI_WARNINGS ON
has to be set for the connection!!! not for the SP. So if you call this SP from Query analyzer do something like this:
SET ANSI_NULLS ON
SET ANSI_WARNINGS ON
exec MyProc
If you call this SP from an application, then set this 2 option for the connection
(first execute them and only after that execute the SP)
The proble is that these 2 options are set by default to other values when you open a new connection...
good luck,
xenon
Main Topics
Browse All Topics





by: illPosted on 2003-05-29 at 00:47:29ID: 8604073
i think, that linked server must be created with this option set. remove it and than try to add again in EM with required set options