Hidden Features of SQL Server - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T18:20:11Zhttp://stackoverflow.com/feeds/question/121243http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/121243/hidden-features-of-sql-server82Hidden Features of SQL ServerSklivvz2008-09-23T14:13:42Z2009-09-01T19:48:47Z
<p>What are some hidden features of Sql Server?</p>
<p>For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?</p>
<p><hr /></p>
<h2>Answers</h2>
<p><em>Thanks to everybody for all the great answers!</em></p>
<p><strong>Stored Procedures</strong></p>
<ul>
<li><strong>sp_msforeachtable:</strong> Runs a command with '?' replaced with each table name (v6.5 and up)</li>
<li><strong>sp_msforeachdb:</strong> Runs a command with '?' replaced with each database name (v7 and up)</li>
<li><strong>sp_who2:</strong> just like sp_who, but with a lot more info for troubleshooting blocks (v7 and up)</li>
<li><strong>sp_helptext:</strong> If you want the code of a stored procedure</li>
<li><strong>sp_tables:</strong> return a list of all tables</li>
<li><strong>sp_stored_procedures:</strong> return a list of all stored procedures</li>
<li><strong>xp_sscanf:</strong> Reads data from the string into the argument locations specified by each format argument.</li>
<li><strong>xp_fixeddrives:</strong>: Find the fixed drive with largest free space</li>
<li><strong>sp_help:</strong> If you want to know the table structure, indexes and constraints of a table</li>
</ul>
<p><strong>Snippets</strong></p>
<ul>
<li>Returning rows in random order</li>
<li>All DB User Objects by Last Modified Date</li>
<li>Return Date Only</li>
<li>Find records which date falls somewhere inside the current week.</li>
<li>Find records which date occurred last week.</li>
<li>Returns the date for the beginning of the current week.</li>
<li>Returns the date for the beginning of last week.</li>
<li>See the text of a procedure that has been deployed to a server</li>
<li>Drop all connections to the database</li>
<li>Table Checksum</li>
<li>Row Checksum</li>
<li>Drop all the procedures in a DB</li>
<li>Re-map the login Ids correctly after restore</li>
<li>Call Stored Procedures from an INSERT statement</li>
<li>Find Procedures By Keyword</li>
<li>Drop all the procedures in a DB</li>
<li>Query the transaction log for a database programmatically.</li>
</ul>
<p><strong>Functions</strong></p>
<ul>
<li>HashBytes()</li>
<li>EncryptByKey</li>
<li>PIVOT command</li>
</ul>
<p><strong>Misc</strong></p>
<ul>
<li>Connection String extras</li>
<li>TableDiff.exe</li>
<li>Triggers for Logon Events (New in Service Pack 2)</li>
<li>Boosting performance with persisted-computed-columns (pcc).</li>
<li>DEFAULT_SCHEMA setting in sys.database_principles</li>
<li>Forced Parameterization</li>
<li>Vardecimal Storage Format</li>
<li>Figuring out the most popular queries in seconds</li>
<li>Scalable Shared Databases</li>
<li>Table/Stored Procedure Filter feature in SQL Management Studio</li>
<li>Trace flags</li>
<li>Number after a <code>GO</code> repeats the batch</li>
<li>Security using schemas</li>
<li>Encryption using built in encryption functions, views and base tables with triggers</li>
</ul>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121275#1212755Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-23T14:18:59Z2008-09-23T14:18:59Z<p>Here are some features I find useful but a lot of people don't seem to know about:</p>
<pre><code>sp_tables
</code></pre>
<blockquote>
<p>Returns a list of objects that can be
queried in the current environment.
This means any object that can appear
in a FROM clause, except synonym
objects.</p>
</blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/ms186250(SQL.90).aspx" rel="nofollow">Link</a></p>
<pre><code>sp_stored_procedures
</code></pre>
<blockquote>
<p>Returns a list of stored procedures in
the current environment.</p>
</blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/ms190504(SQL.90).aspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121289#12128911Answer by Joel Coehoorn for Hidden Features of SQL ServerJoel Coehoorn2008-09-23T14:21:35Z2009-04-28T08:23:16Z<p><a href="http://msdn.microsoft.com/en-us/library/ms174415%28SQL.90%29.aspx" rel="nofollow">HashBytes()</a> to return the MD2, MD4, MD5, SHA, or SHA1 hash of its input.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121391#1213914Answer by John Sheehan for Hidden Features of SQL ServerJohn Sheehan2008-09-23T14:34:16Z2008-09-23T14:34:16Z<p>Simple encryption with <a href="http://msdn.microsoft.com/en-us/library/ms174361(SQL.90).aspx" rel="nofollow">EncryptByKey</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121496#1214968Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-23T14:47:43Z2008-09-24T08:18:30Z<p>Useful for parsing stored procedure arguments: <a href="http://msdn.microsoft.com/en-us/library/ms181431(SQL.90).aspx" rel="nofollow">xp_sscanf</a></p>
<blockquote>
<p>Reads data from the string into the argument locations specified by each format argument.</p>
<p>The following example uses xp_sscanf
to extract two values from a source
string based on their positions in the
format of the source string.</p>
</blockquote>
<pre><code>DECLARE @filename varchar (20), @message varchar (20)
EXEC xp_sscanf 'sync -b -fproducts10.tmp -rrandom', 'sync -b -f%s -r%s',
@filename OUTPUT, @message OUTPUT
SELECT @filename, @message
</code></pre>
<blockquote>
<p>Here is the result set.</p>
</blockquote>
<pre><code>-------------------- --------------------
products10.tmp random
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121597#1215974Answer by Booji Boy for Hidden Features of SQL ServerBooji Boy2008-09-23T15:06:08Z2008-09-23T15:06:08Z<p>sp_who2, just like sp_who, but with a lot more info for troubleshooting blocks</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121613#1216131Answer by ICW for Hidden Features of SQL ServerICW2008-09-23T15:09:22Z2008-09-23T15:09:22Z<p>/* Find the fixed drive with largest free space, you can also copy files to estimate which disk is quickest */</p>
<pre><code>EXEC master..xp_fixeddrives
</code></pre>
<p>/* Checking assumptions about a file before use or reference */</p>
<pre><code>EXEC master..xp_fileexist 'C:\file_you_want_to_check'
</code></pre>
<p><a href="http://blogs.msdn.com/sathishcg/archive/2006/11/24/undocumented-sql-server-2000-functions.aspx" rel="nofollow">More details here</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121618#12161827Answer by Mitch Wheat for Hidden Features of SQL ServerMitch Wheat2008-09-23T15:10:24Z2009-09-01T19:48:47Z<p>sp_msforeachtable: Runs a command with '?' replaced with each table name.
e.g.</p>
<pre><code>exec sp_msforeachtable "dbcc dbreindex('?')"
</code></pre>
<p>You can issue up to 3 commands for each table </p>
<pre><code>exec sp_msforeachtable
@Command1 = 'print ''reindexing table ?''',
@Command2 = 'dbcc dbreindex(''?'')',
@Command3 = 'select count (*) [?] from ?'
</code></pre>
<p>Also, sp_MSforeachdb</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121634#12163419Answer by Mitch Wheat for Hidden Features of SQL ServerMitch Wheat2008-09-23T15:13:40Z2009-05-24T14:59:26Z<p>A less known TSQL technique for returning rows in random order:</p>
<pre><code>-- Return rows in a random order
SELECT
SomeColumn
FROM
SomeTable
ORDER BY
CHECKSUM(NEWID())
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121684#12168421Answer by Chris Wenham for Hidden Features of SQL ServerChris Wenham2008-09-23T15:21:30Z2008-09-23T15:21:30Z<p>Connection String extras:</p>
<p><strong>MultipleActiveResultSets=true;</strong></p>
<p>This makes ADO.Net 2.0 and above read multiple, forward-only, read-only results sets on a single database connection, which can improve performance if you're doing a lot of reading. You can turn it on even if you're doing a mix of query types.</p>
<p><strong>Application Name=MyProgramName</strong></p>
<p>Now when you want to see a list of active connections by querying the sysprocesses table, your program's name will appear in the program_name column instead of ".Net SqlClient Data Provider" </p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121791#1217913Answer by Gordon Bell for Hidden Features of SQL ServerGordon Bell2008-09-23T15:36:33Z2008-11-25T23:16:55Z<p>Here is a query I wrote to list All DB User Objects by Last Modified Date:</p>
<pre><code>select name, modify_date,
case when type_desc = 'USER_TABLE' then 'Table'
when type_desc = 'SQL_STORED_PROCEDURE' then 'Stored Procedure'
when type_desc in ('SQL_INLINE_TABLE_VALUED_FUNCTION', 'SQL_SCALAR_FUNCTION', 'SQL_TABLE_VALUED_FUNCTION') then 'Function'
end as type_desc
from sys.objects
where type in ('U', 'P', 'FN', 'IF', 'TF')
and is_ms_shipped = 0
order by 2 desc
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121881#1218810Answer by Gordon Bell for Hidden Features of SQL ServerGordon Bell2008-09-23T15:49:19Z2008-09-23T15:49:19Z<p>A semi-hidden feature, the Table/Stored Procedure Filter feature can be really useful...</p>
<p>In the <strong>SQL Server Management Studio</strong> <em>Object Explorer</em>, right-click the <strong>Tables</strong> or <strong>Stored Procedures</strong> folder, select the <strong>Filter</strong> menu, then <strong>Filter Settings</strong>, and enter a partial name in the <em>Name contains</em> row.</p>
<p>Likewise, use <strong>Remove Filter</strong> to see all Tables/Stored Procedures again.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121915#1219154Answer by GateKiller for Hidden Features of SQL ServerGateKiller2008-09-23T15:54:23Z2009-02-17T11:28:49Z<p>Return Date Only</p>
<pre><code>Select Cast(Floor(Cast(Getdate() As Float))As Datetime)
</code></pre>
<p>or</p>
<pre><code>Select DateAdd(Day, 0, DateDiff(Day, 0, Getdate()))
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121924#1219244Answer by GateKiller for Hidden Features of SQL ServerGateKiller2008-09-23T15:55:41Z2008-09-23T15:55:41Z<p>Find records which date falls somewhere inside the current week.</p>
<pre><code>where dateadd( week, datediff( week, 0, TransDate ), 0 ) =
dateadd( week, datediff( week, 0, getdate() ), 0 )
</code></pre>
<p>Find records which date occurred last week.</p>
<pre><code>where dateadd( week, datediff( week, 0, TransDate ), 0 ) =
dateadd( week, datediff( week, 0, getdate() ) - 1, 0 )
</code></pre>
<p>Returns the date for the beginning of the current week.</p>
<pre><code>select dateadd( week, datediff( week, 0, getdate() ), 0 )
</code></pre>
<p>Returns the date for the beginning of last week.</p>
<pre><code>select dateadd( week, datediff( week, 0, getdate() ) - 1, 0 )
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121927#1219274Answer by GateKiller for Hidden Features of SQL ServerGateKiller2008-09-23T15:56:16Z2008-09-23T15:56:16Z<p>Drop all connections to the database:</p>
<pre><code>Use Master
Go
Declare @dbname sysname
Set @dbname = 'name of database you want to drop connections from'
Declare @spid int
Select @spid = min(spid) from master.dbo.sysprocesses
where dbid = db_id(@dbname)
While @spid Is Not Null
Begin
Execute ('Kill ' + @spid)
Select @spid = min(spid) from master.dbo.sysprocesses
where dbid = db_id(@dbname) and spid > @spid
End
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121933#1219336Answer by GateKiller for Hidden Features of SQL ServerGateKiller2008-09-23T15:56:53Z2008-09-23T15:56:53Z<p>Table Checksum</p>
<pre><code>Select CheckSum_Agg(Binary_CheckSum(*)) From Table With (NOLOCK)
</code></pre>
<p>Row Checksum</p>
<pre><code>Select CheckSum_Agg(Binary_CheckSum(*)) From Table With (NOLOCK) Where Column = Value
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/121995#1219950Answer by Christopher Klein for Hidden Features of SQL ServerChristopher Klein2008-09-23T16:05:02Z2008-11-14T14:45:36Z<p>for SQL 2005<br>
select * from sys.dm_os_performance_counters</p>
<p>select * from sys.dm_exec_requests</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/122022#12202216Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-23T16:09:25Z2008-09-29T17:00:09Z<p><strong>TableDiff.exe</strong></p>
<ul>
<li>Table Difference tool allows you to discover and reconcile differences between a source and destination table or a view. Tablediff Utility can report differences on schema and data. The most popular feature of tablediff is the fact that it can generate a script that you can run on the destination that will reconcile differences between the tables.</li>
</ul>
<p><a href="http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/gems-top-10.mspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/122218#1222183Answer by cheeves for Hidden Features of SQL Servercheeves2008-09-23T16:43:33Z2008-09-23T16:43:33Z<p>i find this small script very hand to see the text of a procedure that has beed deployed to a server - </p>
<pre><code>DECLARE @procedureName NVARCHAR( MAX ), @procedureText NVARCHAR( MAX )
SET @procedureName = 'myproc_Proc1'
SET @procedureText = (
SELECT OBJECT_DEFINITION( object_id )
FROM sys.procedures
WHERE Name = @procedureName
)
PRINT @procedureText
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/122233#1222331Answer by cheeves for Hidden Features of SQL Servercheeves2008-09-23T16:46:28Z2008-09-23T16:46:28Z<p>If you want to drop all the procedures in a DB - </p>
<pre><code>SELECT IDENTITY ( int, 1, 1 ) id,
[name]
INTO #tmp
FROM sys.procedures
WHERE [type] = 'P'
AND is_ms_shipped = 0
DECLARE @i INT
SELECT @i = COUNT( id ) FROM #tmp
WHILE @i > 0
BEGIN
DECLARE @name VARCHAR( 100 )
SELECT @name = name FROM #tmp WHERE id = @<a href="#121613">i </a>
EXEC ( 'DROP PROCEDURE ' + @name )
SET @i = @i-1
END
DROP TABLE #tmp
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/122280#1222806Answer by Eduardo Molteni for Hidden Features of SQL ServerEduardo Molteni2008-09-23T16:56:14Z2008-09-23T16:56:14Z<p>If you want the code of a stored procedure you can:</p>
<pre><code>sp_helptext 'ProcedureName'
</code></pre>
<p>(not sure if it is hidden feature, but I use it all the time)</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/122612#1226126Answer by Kolten for Hidden Features of SQL ServerKolten2008-09-23T17:56:07Z2008-09-23T17:56:07Z<p>useful when restoring a database for Testing purposes or whatever. Re-maps the login ID's correctly:</p>
<p>EXEC sp_change_users_login 'Auto_Fix', 'Mary', NULL, 'B3r12-36'</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/124516#1245163Answer by JohnD for Hidden Features of SQL ServerJohnD2008-09-23T23:17:05Z2008-09-23T23:17:05Z<p>Not so much a hidden feature but setting up key mappings in Management Studio under Tools\Options\Keyboard:
Alt+F1 is defaulted to sp_help "selected text" but I cannot live without the adding Ctrl+F1 for sp_helptext "selected text"</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/127030#1270304Answer by Constantin for Hidden Features of SQL ServerConstantin2008-09-24T13:11:34Z2008-09-24T14:28:40Z<p><a href="http://msdn.microsoft.com/en-us/library/ms188396.aspx" rel="nofollow">Trace Flags</a>! "1204" was invaluable in deadlock debugging on SQL Server 2000 (2005 has better tools for this).</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/138366#1383665Answer by edomaur for Hidden Features of SQL Serveredomaur2008-09-26T08:58:55Z2008-11-01T04:45:39Z<p>A stored procedure trick is that you can call them from an INSERT statement. I found this very useful when I was working on an SQL Server database. </p>
<pre><code>CREATE TABLE #toto (v1 int, v2 int, v3 char(4), status char(6))
INSERT #toto (v1, v2, v3, status) EXEC dbo.sp_fulubulu(sp_param1)
SELECT * FROM #toto
DROP TABLE #toto
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/139892#1398922Answer by Jim for Hidden Features of SQL ServerJim2008-09-26T14:31:04Z2008-09-26T14:31:04Z<p>My favorite is master..xp_cmdshell. It allows you to run commands from a command prompt on the server and see the output. It's extremely useful if you can't login to the server, but you need to get information or control it somehow.</p>
<p>For example, to list the folders on the C: drive of the server where SQL Server is running.</p>
<ul>
<li>master..xp_cmdshell 'dir c:\'</li>
</ul>
<p>You can start and stop services, too.</p>
<ul>
<li><p>master..xp_cmdshell 'sc query "My
Service"'</p></li>
<li><p>master..xp_cmdshell 'sc stop "My
Service"'</p></li>
<li><p>master..xp_cmdshell 'sc start "My
Service"'</p></li>
</ul>
<p>It's very powerful, but a security risk, also. Many people disable it because it could easily be used do bad things on the server. But, if you have access to it, it can be extremely useful.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/140015#1400159Answer by Eduardo Molteni for Hidden Features of SQL ServerEduardo Molteni2008-09-26T14:54:03Z2008-09-26T14:54:03Z<p>If you want to know the table structure, indexes and constraints:</p>
<pre><code>sp_help 'TableName'
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/140753#1407531Answer by Ollie for Hidden Features of SQL ServerOllie2008-09-26T17:18:55Z2008-09-26T17:18:55Z<p>@<a href="#121933" rel="nofollow">Gatekiller </a>- An easier way to get just the Date is surely </p>
<pre><code>CAST(CONVERT(varchar,getdate(),103) as datetime)
</code></pre>
<p>If you don't use DD/MM/YYYY in your locale, you'd need to use a different value from 103. Lookup CONVERT function in SQL Books Online for the locale codes.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/141065#14106526Answer by GilM for Hidden Features of SQL ServerGilM2008-09-26T18:13:54Z2008-09-26T18:13:54Z<p>In Management Studio, you can put a number after a GO end-of-batch marker to cause the batch to be repeated that number of times:</p>
<pre><code>PRINT 'X'
GO 10
</code></pre>
<p>Will print 'X' 10 times. This can save you from tedious copy/pasting when doing repetitive stuff.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/149644#1496441Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-29T17:00:24Z2008-09-29T17:00:24Z<p><strong>Triggers for Logon Events</strong> </p>
<ul>
<li>Logon triggers can help complement auditing and compliance. For example, logon events can be used for enforcing rules on connections (for example limiting connection through a specific username or limiting connections through a username to a specific time periods) or simply for tracking and recording general connection activity. Just like in any trigger, ROLLBACK cancels the operation that is in execution. In the case of logon event that means canceling the connection establishment. Logon events do not fire when the server is started in the minimal configuration mode or when a connection is established through dedicated admin connection (DAC).</li>
</ul>
<p><a href="http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/gems-top-10.mspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/149645#1496453Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-29T17:00:54Z2008-09-29T17:00:54Z<p><strong>Persisted-computed-columns</strong></p>
<ul>
<li>Computed columns can help you shift the runtime computation cost to data modification phase. The computed column is stored with the rest of the row and is transparently utilized when the expression on the computed columns and the query matches. You can also build indexes on the PCC’s to speed up filtrations and range scans on the expression.</li>
</ul>
<p><a href="http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/gems-top-10.mspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/149653#1496530Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-29T17:01:31Z2008-09-29T17:01:31Z<p><strong>DEFAULT_SCHEMA setting in sys.database_principles</strong></p>
<ul>
<li>SQL Server provides great flexibility with name resolution. However name resolution comes at a cost and can get noticeably expensive in adhoc workloads that do not fully qualify object references. SQL Server 2005 allows a new setting of DEFEAULT_SCHEMA for each database principle (also known as “user”) which can eliminate this overhead without changing your TSQL code.</li>
</ul>
<p><a href="http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/gems-top-10.mspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/149659#1496590Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-29T17:02:20Z2008-09-29T17:02:20Z<p><strong>Forced Parameterization</strong></p>
<ul>
<li>Parameterization allows SQL Server to take advantage of query plan reuse and avoid compilation and optimization overheads on subsequent executions of similar queries. However there are many applications out there that, for one reason or another, still suffer from ad-hoc query compilation overhead. For those cases with high number of query compilation and where lowering CPU utilization and response time is critical for your workload, force parameterization can help.</li>
</ul>
<p><a href="http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/gems-top-10.mspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/149661#1496610Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-29T17:02:46Z2008-09-29T17:02:46Z<p><strong>Vardecimal Storage Format</strong></p>
<ul>
<li>SQL Server 2005 adds a new storage format for numeric and decimal datatypes called vardecimal. Vardecimal is a variable-length representation for decimal types that can save unused bytes in every instance of the row. The biggest amount of savings come from cases where the decimal definition is large (like decimal(38,6)) but the values stored are small (like a value of 0.0) or there is a large number of repeated values or data is sparsely populated.</li>
</ul>
<p><a href="http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/gems-top-10.mspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/149665#1496656Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-29T17:03:14Z2008-09-29T17:03:14Z<p><strong>Figuring out the most popular queries</strong></p>
<ul>
<li>With sys.dm_exec_query_stats, you can figure out many combinations of query analyses by a single query.</li>
</ul>
<p><a href="http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/gems-top-10.mspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/149667#1496670Answer by Sklivvz for Hidden Features of SQL ServerSklivvz2008-09-29T17:03:32Z2008-09-29T17:03:32Z<p><strong>Scalable Shared Databases</strong></p>
<ul>
<li>Through Scalable Shared Databases one can mount the same physical drives on commodity machines and allow multiple instances of SQL Server 2005 to work off of the same set of data files. The setup does not require duplicate storage for every instance of SQL Server and allows additional processing power through multiple SQL Server instances that have their own local resources like cpu, memory, tempdb and potentially other local databases.</li>
</ul>
<p><a href="http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/gems-top-10.mspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/159835#1598352Answer by Meff for Hidden Features of SQL ServerMeff2008-10-01T21:26:32Z2008-10-01T21:26:32Z<p><strong>Find Procedures By Keyword</strong></p>
<p>What procedures contain a certain piece of text (Table name, column name, variable name, TODO, etc)?</p>
<pre><code>SELECT OBJECT_NAME(ID) FROM SysComments
WHERE Text LIKE '%SearchString%'
AND OBJECTPROPERTY(id, 'IsProcedure') = 1
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/185368#1853684Answer by BoltBait for Hidden Features of SQL ServerBoltBait2008-10-08T23:36:51Z2009-04-28T08:31:43Z<p>I know it's not exactly hidden, but not too many people know about the <a href="http://msdn.microsoft.com/en-us/library/ms177410.aspx" rel="nofollow">PIVOT</a> command. I was able to change a stored procedure that used cursors and took 2 minutes to run into a speedy 6 second piece of code that was one tenth the number of lines!</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/207184#2071842Answer by Chris Roland for Hidden Features of SQL ServerChris Roland2008-10-16T02:02:57Z2008-10-16T02:02:57Z<p>Here is one I learned today because I needed to search for a transaction.</p>
<p>::fn_dblog<br>
This allows you to query the transaction log for a database.</p>
<pre><code>USE mydatabase;
SELECT *
FROM ::fn_dblog(NULL, NULL)
</code></pre>
<p><a href="http://killspid.blogspot.com/2006/07/using-fndblog.html" rel="nofollow">http://killspid.blogspot.com/2006/07/using-fndblog.html</a><br></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/219457#2194570Answer by Sam for Hidden Features of SQL ServerSam2008-10-20T18:49:30Z2008-10-20T18:49:30Z<p>A few of my favorite things:</p>
<p>Added in sp2 - Scripting options under tools/options/scripting</p>
<p>New security using schemas - create two schemas: user_access, admin_access. Put your user procs in one and your admin procs in the other like this: user_access.showList , admin_access.deleteUser . Grant EXECUTE on the schema to your app user/role. No more GRANTing EXECUTE all the time.</p>
<p>Encryption using built in encryption functions, views(to decrypt for presentation), and base tables with triggers(to encrypt on insert/update).</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/232772#2327720Answer by MarlonRibunal for Hidden Features of SQL ServerMarlonRibunal2008-10-24T07:44:26Z2009-05-29T16:12:28Z<p>OK, here's my 2 cents: </p>
<p><a href="http://dbalink.wordpress.com/2008/10/24/querying-the-object-catalog-and-information-schema-views/" rel="nofollow">http://dbalink.wordpress.com/2008/10/24/querying-the-object-catalog-and-information-schema-views/</a> </p>
<p>I am too lazy to re-write the whole thing here, so please check my post. That may be trivial to many, but there will be some who will find it a "hidden gem".</p>
<p>EDIT:</p>
<p>After a while, I decided to add the code here so you don't have to jump to my blog to see the code.</p>
<pre><code>SELECT T.NAME AS [TABLE NAME], C.NAME AS [COLUMN NAME], P.NAME AS [DATA TYPE], P.MAX_LENGTH AS[SIZE], CAST(P.PRECISION AS VARCHAR) +‘/’+ CAST(P.SCALE AS VARCHAR) AS [PRECISION/SCALE]
FROM ADVENTUREWORKS.SYS.OBJECTS AS T
JOIN ADVENTUREWORKS.SYS.COLUMNS AS C
ON T.OBJECT_ID=C.OBJECT_ID
JOIN ADVENTUREWORKS.SYS.TYPES AS P
ON C.SYSTEM_TYPE_ID=P.SYSTEM_TYPE_ID
WHERE T.TYPE_DESC=‘USER_TABLE’;
</code></pre>
<p>Or, if you want to pull all the User Tables altogether, use CURSOR like this:</p>
<pre><code>DECLARE @tablename VARCHAR(60)
DECLARE cursor_tablenames CURSOR FOR
SELECT name FROM AdventureWorks.sys.tables
OPEN cursor_tablenames
FETCH NEXT FROM cursor_tablenames INTO @tablename
WHILE @@FETCH_STATUS = 0
BEGIN
SELECT t.name AS [TABLE Name], c.name AS [COLUMN Name], p.name AS [DATA Type], p.max_length AS[SIZE], CAST(p.PRECISION AS VARCHAR) +‘/’+ CAST(p.scale AS VARCHAR) AS [PRECISION/Scale]
FROM AdventureWorks.sys.objects AS t
JOIN AdventureWorks.sys.columns AS c
ON t.OBJECT_ID=c.OBJECT_ID
JOIN AdventureWorks.sys.types AS p
ON c.system_type_id=p.system_type_id
WHERE t.name = @tablename
AND t.type_desc=‘USER_TABLE’
ORDER BY t.name ASC
FETCH NEXT FROM cursor_tablenames INTO @tablename
END
CLOSE cursor_tablenames
DEALLOCATE cursor_tablenames
</code></pre>
<p>ADDITIONAL REFERENCE (my blog): <a href="http://dbalink.wordpress.com/2009/01/21/how-to-create-cursor-in-tsql/" rel="nofollow">http://dbalink.wordpress.com/2009/01/21/how-to-create-cursor-in-tsql/</a> </p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/234226#2342261Answer by Eduardo Molteni for Hidden Features of SQL ServerEduardo Molteni2008-10-24T16:21:10Z2008-10-24T16:21:10Z<pre><code>sp_executesql
</code></pre>
<p>For executing a statement in a string. As good as <em>Execute</em> but can return parameters out</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/234293#2342932Answer by Kyralessa for Hidden Features of SQL ServerKyralessa2008-10-24T16:36:34Z2008-10-24T16:36:34Z<p>Since I'm a programmer, not a DBA, my favorite hidden feature is the <a href="http://msdn.microsoft.com/en-us/library/ms162169(SQL.90).aspx" rel="nofollow">SMO library</a>. You can automate pretty much anything in SQL Server, from database/table/column creation and deletion to scripting to backup and restore. If you can do it in SQL Server Management Studio, you can automate it in SMO.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/234684#2346840Answer by avidcoder for Hidden Features of SQL Serveravidcoder2008-10-24T18:08:37Z2008-10-24T18:08:37Z<p>Not undocumented</p>
<p>RowNumber courtesy of Itzik Ben-Gan
<a href="http://www.sqlmag.com/article/articleid/97675/sql_server_blog_97675.html" rel="nofollow">http://www.sqlmag.com/article/articleid/97675/sql_server_blog_97675.html</a></p>
<p>SET XACT_ABORT ON
rollback everything on error for transactions</p>
<p>all the sp_'s are helpful just browse books online</p>
<p>keyboard shortcuts I use all the time in management studio
F6 - switch between results and query
Alt+X or F5- run selected text in query if nothing is selected runs the entire window
Alt+T and Alt+D - results in text or grid respectively</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/262870#2628701Answer by Dave ODonnell for Hidden Features of SQL ServerDave ODonnell2008-11-04T18:36:12Z2008-11-04T18:36:12Z<p>I find sp_depends useful, displays the objects which depend on a given object, eg
exec sp_depends 'fn_myFunction' returns objects which depend on this function(note, if the objects have not originally been run into the database in the correct order this will give incorrect results) </p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/318602#3186022Answer by Ray Vega for Hidden Features of SQL ServerRay Vega2008-11-25T19:36:01Z2008-11-25T23:02:40Z<p><strong><a href="http://msdn.microsoft.com/en-us/library/ms188055(SQL.90).aspx" rel="nofollow">EXCEPT and INTERSECT</a></strong></p>
<p>Instead of writing elaborate joins and subqueries, these two keywords are a much more elegant shorthand and readable way of expressing your query's intent when comparing two query results. New as of SQL Server 2005, they strongly complement UNION which has already existed in the TSQL language for years.</p>
<p>The concepts of EXCEPT, INTERSECT, and UNION are fundamental in set theory which serves as the basis and foundation of relational modeling used by all modern RDBMS. Now, Venn diagram type results can be more intuitively and quite easily generated using TSQL.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/318659#3186590Answer by Logicalmind for Hidden Features of SQL ServerLogicalmind2008-11-25T19:57:47Z2008-11-25T19:57:47Z<p>In SQL Server 2k5 you no longer need to run the <a href="http://support.microsoft.com/default.aspx/kb/271509" rel="nofollow">sp-blocker-pss80</a> stored proc. Instead, you can do:</p>
<pre><code>exec sp_configure 'show advanced options', 1;
reconfigure;
go
exec sp_configure 'blocked process threshold', 30;
reconfigure;
</code></pre>
<p>You can then start a SQL Trace and select the Blocked process report event class in the Errors and Warnings group. Details of that event <a href="http://msdn.microsoft.com/en-us/library/ms191168(SQL.90).aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/321159#3211590Answer by Chris Lively for Hidden Features of SQL ServerChris Lively2008-11-26T15:43:39Z2008-11-26T15:43:39Z<p>The most surprising thing I learned this week involved using a CASE statement in the ORDER By Clause. For example%</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/421628#4216280Answer by casperOne for Hidden Features of SQL ServercasperOne2009-01-07T19:08:36Z2009-01-07T19:08:36Z<p>Based on what appears to be a vehement reaction to it by hardened database developers, the CLR integration would rank right up there. =)</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/422016#4220160Answer by SQLMenace for Hidden Features of SQL ServerSQLMenace2009-01-07T20:45:59Z2009-01-07T20:45:59Z<p>Some undocumented ones are here: <a href="http://wiki.lessthandot.com/index.php/SQL_Server_Programming_Hacks_-_100%2B_List#Undocumented_but_handy" rel="nofollow">Undocumented but handy SQL server Procs and DBCC commands</a></p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/532766#5327663Answer by Binoj Antony for Hidden Features of SQL ServerBinoj Antony2009-02-10T15:22:30Z2009-02-10T15:22:30Z<p>In sql server 2005/2008 to show row numbers in a SELECT query result</p>
<pre><code>SELECT ( ROW_NUMBER() OVER (ORDER BY OrderId) ) AS RowNumber,
GrandTotal, CustomerId, PurchaseDate
FROM Orders
</code></pre>
<p>ORDER BY is a compulsory clause. The OVER() clause tells the SQL Engine to sort data on the specified column (in this case OrderId) and assign numbers as per the sort results.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/542907#5429070Answer by YordanGeorgiev for Hidden Features of SQL ServerYordanGeorgiev2009-02-12T19:42:08Z2009-02-12T19:42:08Z<p>use db
go<br />
DECLARE @procName varchar(100)<br />
DECLARE @cursorProcNames CURSOR<br />
SET @cursorProcNames = CURSOR FOR<br />
select name from sys.procedures where modify_date > '2009-02-05 13:12:15.273' order by modify_date desc </p>
<p>OPEN @cursorProcNames<br />
FETCH NEXT<br />
FROM @cursorProcNames INTO @procName<br />
WHILE @@FETCH_STATUS = 0<br />
BEGIN<br />
-- see the text of the last stored procedures modified on
-- the db , hint Ctrl + T would give you the procedures test
set nocount off;<br />
exec sp_HelpText @procName --- or print them<br />
-- print @procName </p>
<p>FETCH NEXT<br />
FROM @cursorProcNames INTO @procName<br />
END<br />
CLOSE @cursorProcNames </p>
<p>select @@error </p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/543052#5430520Answer by YordanGeorgiev for Hidden Features of SQL ServerYordanGeorgiev2009-02-12T20:18:12Z2009-09-01T18:29:16Z<pre><code>use db
go
select o.name
, (SELECT [definition] AS [text()]
FROM sys.all_sql_modules
WHERE sys.all_sql_modules.object_id=a.object_id
FOR XML PATH(''), TYPE
) AS Statement_Text
, a.object_id
, o.modify_date
FROM sys.all_sql_modules a
LEFT JOIN sys.objects o ON a.object_id=o.object_id
ORDER BY 4 desc
--select * from sys.objects
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/701013#7010131Answer by adolf garlic for Hidden Features of SQL Serveradolf garlic2009-03-31T13:41:10Z2009-03-31T13:41:10Z<p>Get a list of column headers in vertical format:</p>
<p>Copy column names in grid results</p>
<p>Tools - Options - Query Results - SQL Server - Results to Grid
tick "Include column headers when copying or saving the results"</p>
<p>you will need to make a new connection at this point, then run your query</p>
<p>Now when you copy the results from the grid, you get the column headers</p>
<p>Also
If you then copy the results to excel</p>
<p>Copy col headers only</p>
<p>Paste Special (must not overlap copy area)</p>
<p>tick "Transpose" </p>
<p>OK</p>
<p>[you may wish to add a "," and autofill down at this point]</p>
<p>You have an instant list of columns in vertical format</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/894283#8942833Answer by Sheki for Hidden Features of SQL ServerSheki2009-05-21T18:10:32Z2009-05-21T18:10:32Z<p>I'm not sure if this is a hidden feature or not, but I stumbled upon this, and have found it to be useful on many occassions. You can concatonate a set of a field in a single select statement, rather than using a cursor and looping through the select statement.</p>
<p>Example:</p>
<pre><code>DECLARE @nvcConcatonated nvarchar(max)
SET @nvcConcatonated = ''
SELECT @nvcConcatonated = @nvcConcatonated + C.CompanyName + ', '
FROM tblCompany C
WHERE C.CompanyID IN (1,2,3)
SELECT @nvcConcatonated
</code></pre>
<p>Results:
"Acme, Microsoft, Apple,"</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/894304#8943040Answer by Sheki for Hidden Features of SQL ServerSheki2009-05-21T18:17:19Z2009-05-21T18:17:19Z<p>Returing results based on a pipe delimited string of IDs in a single statmeent (alternative to passing xml or first turning the delimited string to a table)</p>
<p>Example:</p>
<pre><code>DECLARE @nvcIDs nvarchar(max)
SET @nvcIDs = '|1|2|3|'
SELECT C.*
FROM tblCompany C
WHERE @nvcIDs LIKE '%|' + CAST(C.CompanyID as nvarchar) + '|%'
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/926216#9262160Answer by Duncan Smart for Hidden Features of SQL ServerDuncan Smart2009-05-29T14:18:09Z2009-05-29T14:18:09Z<p>Execute a stored proc and capture the results in a (temp) table for further processing, e.g.:</p>
<pre><code>INSERT INTO someTable EXEC sp_someproc
</code></pre>
<p>Example: Shows <code>sp_help</code> output, but ordered by database size:</p>
<pre><code>CREATE TABLE #dbs
(
name nvarchar(50),
db_size nvarchar(50),
owner nvarchar(50),
dbid int,
created datetime,
status nvarchar(255),
compatiblity_level int
)
INSERT INTO #dbs EXEC sp_helpdb
SELECT * FROM #dbs
ORDER BY CONVERT(decimal, LTRIM(LEFT(db_size, LEN(db_size)-3))) DESC
DROP TABLE #dbs
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/1031629#10316292Answer by Dan F for Hidden Features of SQL ServerDan F2009-06-23T09:53:23Z2009-06-23T09:53:23Z<h2>SQLCMD</h2>
<p>If you've got scripts that you run over and over, but have to change slight details, running ssms in <a href="http://msdn.microsoft.com/en-us/library/ms174187.aspx" rel="nofollow">sqlcmd mode</a> is awesome. The <a href="http://msdn.microsoft.com/en-us/library/ms162773.aspx" rel="nofollow">sqlcmd command line</a> is pretty spiffy too.</p>
<p>My favourite features are:</p>
<ul>
<li>You get to set variables. Proper variables that don't require jumping through sp_exec hoops</li>
<li>You can run multiple scripts one after the other</li>
<li>Those scripts can reference the variables in the "outer" script</li>
</ul>
<p>Rather than gushing any more, Simpletalk by Red Gate did an awesome wrap up of sqlcmd - <a href="http://www.simple-talk.com/sql/sql-tools/the-sqlcmd-workbench/" rel="nofollow">The SQLCMD Workbench</a>. Donabel Santos has some great <a href="http://www.sqlmusings.com/tag/sqlcmd/" rel="nofollow">SQLCMD examples</a> too.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/1063685#10636851Answer by Jhonny D. Cano -Leftware- for Hidden Features of SQL ServerJhonny D. Cano -Leftware-2009-06-30T13:26:12Z2009-06-30T13:26:12Z<p>I use to add this stored procedure to the master db,</p>
<p>Improvements:</p>
<ul>
<li>Trim on Host name, so the copy-paste works on VNC.</li>
<li>Added a LOCK option, for just watching what are the current locked processes.</li>
</ul>
<p>Usage:</p>
<ul>
<li>EXEC sp_who3 'ACTIVE'</li>
<li>EXEC sp_who3 'LOCK'</li>
<li>EXEC sp_who3 spid_No</li>
</ul>
<p>That's it.</p>
<pre><code>CREATE procedure sp_who3
@loginame sysname = NULL --or 'active' or 'lock'
as
declare @spidlow int,
@spidhigh int,
@spid int,
@sid varbinary(85)
select @spidlow = 0
,@spidhigh = 32767
if @loginame is not NULL begin
if upper(@loginame) = 'ACTIVE' begin
select spid, ecid, status
, loginame=rtrim(loginame)
, hostname=rtrim(hostname)
, blk=convert(char(5),blocked)
, dbname = case
when dbid = 0 then null
when dbid <> 0 then db_name(dbid)
end
,cmd
from master.dbo.sysprocesses
where spid >= @spidlow and spid <= @spidhigh AND
upper(cmd) <> 'AWAITING COMMAND'
return (0)
end
if upper(@loginame) = 'LOCK' begin
select spid , ecid, status
, loginame=rtrim(loginame)
, hostname=rtrim(hostname)
, blk=convert(char(5),blocked)
, dbname = case
when dbid = 0 then null
when dbid <> 0 then db_name(dbid)
end
,cmd
from master.dbo.sysprocesses
where spid >= 0 and spid <= 32767 AND
upper(cmd) <> 'AWAITING COMMAND'
AND convert(char(5),blocked) > 0
return (0)
end
end
if (@loginame is not NULL
AND upper(@loginame) <> 'ACTIVE'
)
begin
if (@loginame like '[0-9]%') -- is a spid.
begin
select @spid = convert(int, @loginame)
select spid, ecid, status
, loginame=rtrim(loginame)
, hostname=rtrim(hostname)
, blk=convert(char(5),blocked)
, dbname = case
when dbid = 0 then null
when dbid <> 0 then db_name(dbid)
end
,cmd
from master.dbo.sysprocesses
where spid = @spid
end
else
begin
select @sid = suser_sid(@loginame)
if (@sid is null)
begin
raiserror(15007,-1,-1,@loginame)
return (1)
end
select spid, ecid, status
, loginame=rtrim(loginame)
, hostname=rtrim(hostname)
, blk=convert(char(5),blocked)
, dbname = case
when dbid = 0 then null
when dbid <> 0 then db_name(dbid)
end
,cmd
from master.dbo.sysprocesses
where sid = @sid
end
return (0)
end
/* loginame arg is null */
select spid,
ecid,
status
, loginame=rtrim(loginame)
, hostname=rtrim(hostname)
, blk=convert(char(5),blocked)
, dbname = case
when dbid = 0 then null
when dbid <> 0 then db_name(dbid)
end
,cmd
from master.dbo.sysprocesses
where spid >= @spidlow and spid <= @spidhigh
return (0) -- sp_who
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/1065869#10658691Answer by ip for Hidden Features of SQL Serverip2009-06-30T20:28:57Z2009-06-30T20:28:57Z<p>Ok here's the few I've got left, shame I missed the start, but keep it up there's some top stuff here!</p>
<p><strong>Query Analyzer</strong></p>
<ul>
<li><code>Alt+F1</code> executes <code>sp_help</code> on the selected text</li>
<li><code>Ctrl-D</code> - focus to the database dropdown so you can use select db with cursor keys of letter.</li>
</ul>
<p><strong>T-Sql</strong></p>
<ul>
<li><code>if (object_id("nameofobject") IS NOT NULL) begin <do something> end</code> - easiest existence check</li>
<li><code>sp_locks</code> - more in depth locking informaiton than sp_who2 (which is the first port of call)</li>
<li><code>dbcc inputbuffer(spid)</code> - list of top line of executing process (kinda useful but v. brief)</li>
<li><code>dbcc outputbuffer(spid)</code> - list of top line of output of executing process</li>
</ul>
<p><strong>General T-sql tip</strong></p>
<ul>
<li>With large volumes use sub queries liberally to process data in sets </li>
</ul>
<blockquote>
<p>e.g. to obtain a list of married
people over fifty you could select a
set of people who are married in a
subquery and join with a set of the
same people over 50 and output the
joined results - please excuse the
contrived example</p>
</blockquote>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/1140322#11403220Answer by Chris McCall for Hidden Features of SQL ServerChris McCall2009-07-16T21:09:07Z2009-07-16T21:09:07Z<p>CTRL-E executes the currently selected text in Query Analyzer.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/1243721#12437210Answer by marc_s for Hidden Features of SQL Servermarc_s2009-08-07T09:03:38Z2009-08-07T09:03:38Z<p>A lot of SQL Server developers still don't seem to know about the <strong><a href="http://msdn.microsoft.com/en-us/library/ms177564.aspx" rel="nofollow">OUTPUT clause</a></strong> (SQL Server 2005 and newer) on the DELETE, INSERT and UPDATE statement.</p>
<p>It can be extremely useful to know which rows have been INSERTed, UPDATEd, or DELETEd, and the OUTPUT clause allows to do this very easily - it allows access to the "virtual" tables called <code>inserted</code> and <code>deleted</code> (like in triggers):</p>
<pre><code>DELETE FROM (table)
OUTPUT deleted.ID, deleted.Description
WHERE (condition)
</code></pre>
<p>If you're inserting values into a table which has an INT IDENTITY primary key field, with the OUTPUT clause, you can get the inserted new ID right away:</p>
<pre><code>INSERT INTO MyTable(Field1, Field2)
OUTPUT inserted.ID
VALUES (Value1, Value2)
</code></pre>
<p>And if you're updating, it can be extremely useful to know what changed - in this case, <code>inserted</code> represents the new values (after the UPDATE), while <code>deleted</code> refers to the old values before the UPDATE:</p>
<pre><code>UPDATE (table)
SET field1 = value1, field2 = value2
OUTPUT inserted.ID, deleted.field1, inserted.field1
WHERE (condition)
</code></pre>
<p>If a lot of info will be returned, the output of OUTPUT can also be redirected to a temporary table or a table variable (<code>OUTPUT INTO @myInfoTable</code>).</p>
<p>Extremely useful - and very little known!</p>
<p>Marc</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/1364087#13640870Answer by Kane for Hidden Features of SQL ServerKane2009-09-01T19:00:27Z2009-09-01T19:00:27Z<p>Using the osql utility to run command line queries/scripts/batches</p>