Disable messages in SQL2008 result set - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T00:09:04Z http://stackoverflow.com/feeds/question/520220 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/520220/disable-messages-in-sql2008-result-set 0 Disable messages in SQL2008 result set ctrlalt3nd 2009-02-06T13:10:32Z 2009-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#556704 0 Answer by Kristen for Disable messages in SQL2008 result set Kristen 2009-02-17T13:08:03Z 2009-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#556725 0 Answer by Kristen for Disable messages in SQL2008 result set Kristen 2009-02-17T13:14:59Z 2009-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#573471 4 Answer by Brent Ozar for Disable messages in SQL2008 result set Brent Ozar 2009-02-21T18:01:24Z 2009-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#579813 0 Answer by LuckyLindy for Disable messages in SQL2008 result set LuckyLindy 2009-02-23T23:15:12Z 2009-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#580438 0 Answer by Data Dave for Disable messages in SQL2008 result set Data Dave 2009-02-24T04:05:42Z 2009-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>