(Bill Graziano) I found the time to update ClearTrace to support Extended Events. You can download ClearTrace for Extended Events from my corporate site.
Tag: sql server
SQL Server Derived Table Example
(Rick Dobson) A derived table is a subquery nested within a FROM clause. Because of being in a FROM clause, the subquery’s result set can be used similarly to a SQL Server table. The subquery in the FROM clause must have a name. One reason for including a derived table in an outer query is to sim
C# and SQL and Dynamics GP: Sending a List to a Stored Procedure
(Steve Endow) This is a discussion of how to send a list of values to a SQL stored procedure parameter.
Executing Dynamic SQL Using sp_executesql
(Greg Larsen) There are times when an application needs to execute dynamic TSQL. Dynamic TSQL is SQL code that is generated by a program then executed.
SQL SERVER – Natively Compiled Stored Procedures and Location of Compiler
(Pinal Dave) I recently implemented a Memory Optimized Table solution at one of the large financial organizations while working on Comprehensive Database Performance Health Check. It was indeed a very large scale project where I had to help a customer get 10x speed to their original transactions wit
Get-DbaHelpIndex command in DBATools
(Rajendra Gupta) DBATools is an open-source PowerShell that contains a collection of useful commands. In this series of articles on DBATools (see TOC at the bottom) we performed installation of it.
Common SQL Server Mishaps
(Tim Radney) I’ve been teaching and writing about common SQL Server mistakes for many years.
Date and Time Conversions Using SQL Server
There are many instances when dates and times don’t show up at your doorstep in the format you’d like it to be, nor does the output of a query fit the needs of the people viewing it.
Azure SQL DB Maxdop Hint
(blobeater) I had a good question from JP via a comment on my blog about whether you can use the MAXDOP query hint in Azure SQL Database.
It’s interesting how an OR short circuits.
(Kenneth Fisher) I recently did a post on the case expression short circuting and received a very very interesting comment from Chad Estes.