|
Posted by Erland Sommarskog on 10/02/68 11:54
Ed Murphy (emurphy42@socal.rr.com) writes:
> Our client's application software requires all stored procedures to
> have quoted_identifier set a certain way. I've tripped over this a
> few times and promptly fixed it, but this morning, I had to
> troubleshoot a case where someone else tripped over it. In such a
> situation, how can I identify which SP(s) have it set the wrong way?
SELECT name
FROM sysobjects
WHERE objectproperty(id, 'ExecIsQuotedIdentOn') = 0
I'm assuming here that OFF is the incorrect position.
--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
Navigation:
[Reply to this message]
|