Disable messages in SQL2008 result set - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T00:09:04Zhttp://stackoverflow.com/feeds/question/520220http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/520220/disable-messages-in-sql2008-result-set0Disable messages in SQL2008 result setctrlalt3nd2009-02-06T13:10:32Z2009-02-24T04:46:36Z
<p>Hi, further to <a href="http://stackoverflow.com/questions/483787/is-there-a-bug-in-sqldatareader-hasrows-when-running-against-sql-server-2008" rel="nofollow" title="these">these</a> <a href="http://stackoverflow.com/questions/197220/sqldatareader-hasrows-returns-false-since-sql-2008-upgrade">two</a> questions, is there a way to disable the messages that may get sent along with the resultset in SQL2008?</p>
<p>(please note this is nothing to do with the ANSI_WARNINGS setting. <strong>Or NOCOUNT</strong>.)</p>
<p>Thanks for any help.</p>
<p>Edit: It's not a problem with compatibility settings or table owners. <strong>And it's nothing to do with NOCOUNT</strong>. Trust me.</p>
http://stackoverflow.com/questions/520220/disable-messages-in-sql2008-result-set/556704#5567040Answer by Kristen for Disable messages in SQL2008 result setKristen2009-02-17T13:08:03Z2009-02-17T13:08:03Z<p>You need the NOCOUNT in the body of the Sproc anyway (I appreciate that you've tested it with and without)</p>
<p>In circumstances like this I get the actual call to the Sproc (either from a Debug in my APP, or using SQL Profiler) and then plug that into SSMS or whatever IDE you use, wrapping it in a ROLLBACK transaction (so it can't accidentally make any changes). Note: Log on to SQL Server, with your IDE, using the same credentials as the App will use.</p>
<pre><code>BEGIN TRANSACTION
EXEC StaffEnquirySurnameSearch @searchterm = 'FOOBAR'
ROLLBACK
</code></pre>
<p>and see what you get. Use TEXT mode for output, rather than GRID mode which might hide something</p>
<p>Just to show how I think NOCOUNT shoud be added to your SProc:</p>
<pre><code>CREATE PROCEDURE StaffEnquirySurnameSearch
@searchterm varchar(255)
AS
SET NOCOUNT ON
SELECT AD.Name, AD.Company, AD.telephoneNumber, AD.manager, CVS.Position,
CVS.CompanyArea, CVS.Location, CVS.Title, AD.guid AS guid,
AD.firstname, AD.surname
FROM ADCVS AD
LEFT OUTER JOIN CVS ON
AD.Guid=CVS.Guid
WHERE AD.SurName LIKE @searchterm
ORDER BY AD.Surname, AD.Firstname
GO
</code></pre>
<p>I note that you are not prefixing the tables with a database owner (most commonly "dbo") which might mean that there are additional copies owned by whomever and that they turn out to be the default from the applications permissions perspective, although I don't think that will change the resultsets [between SQL versions], However, same thing applies to ownership of the Sproc, and there you might be calling some earlier version, created for a different owner.</p>
<p>Ditto where your Sproc name is defined in your ASP.NET code (which I can't seem to find in your linked question) should also have the owner defined, i.e.</p>
<pre><code>EXEC dbo.StaffEnquirySurnameSearch @searchterm = 'FOOBAR'
</code></pre>
http://stackoverflow.com/questions/520220/disable-messages-in-sql2008-result-set/556725#5567250Answer by Kristen for Disable messages in SQL2008 result setKristen2009-02-17T13:14:59Z2009-02-17T13:14:59Z<p>Did you change the compatibility level when you upgraded from SQL 2000 to 2008? If it is some sort of backward compatibility warning message that might cure it.</p>
http://stackoverflow.com/questions/520220/disable-messages-in-sql2008-result-set/573471#5734714Answer by Brent Ozar for Disable messages in SQL2008 result setBrent Ozar2009-02-21T18:01:24Z2009-02-21T18:01:24Z<p>No, there's not a way to disable all messages that get sent along with the result sets. Set nocount on/off doesn't have an effect on these types of messages.</p>
http://stackoverflow.com/questions/520220/disable-messages-in-sql2008-result-set/579813#5798130Answer by LuckyLindy for Disable messages in SQL2008 result setLuckyLindy2009-02-23T23:15:12Z2009-02-23T23:15:12Z<p>Have you tried running the same CONTAINS query without the "OR"? </p>
<p>i.e.:</p>
<pre><code>SELECT * FROM my_table
WHERE CONTAINS(my_column, 'a monkey') -- "a" is a noise word
</code></pre>
<p>instead of </p>
<pre><code>SELECT * FROM my_table
WHERE CONTAINS(my_column, 'a OR monkey') -- "a" is a noise word
</code></pre>
http://stackoverflow.com/questions/520220/disable-messages-in-sql2008-result-set/580438#5804380Answer by Data Dave for Disable messages in SQL2008 result setData Dave2009-02-24T04:05:42Z2009-02-24T04:46:36Z<p>You can wrap it in a try catch... more info in books online </p>
<p>For example:</p>
<p>CREATE TABLE Test_ShortString(</p>
<pre><code>ShortString varchar(10) NULL
</code></pre>
<p>) </p>
<p>begin Try</p>
<pre><code>insert into
Test_ShortString (ShortString)
values ('123456789012345')
</code></pre>
<p>End Try</p>
<p>Begin catch</p>
<pre><code>--Select Error_Number() as ErrorNumber
</code></pre>
<p>end catch</p>