Sunday, February 10, 2019

SQL Server - How to Execute SQL Query without Displaying results (Silent Select)



SET NOCOUNT (Transact-SQL)



No comments:

Post a Comment

Recently Executed queries

 SELECT     txt.TEXT AS [SQL Statement],     qs.EXECUTION_COUNT [No. Times Executed],     qs.LAST_EXECUTION_TIME AS [Last Time Executed],   ...