SQL Saturday 49 Delivery Mechanisms - Presentation Slide Deck and Files
This past weekend, my wife and I travelled down to Orlando for SQL Saturday 49. I wasn't planning on presenting,...
2010-10-20
406 reads
This past weekend, my wife and I travelled down to Orlando for SQL Saturday 49. I wasn't planning on presenting,...
2010-10-20
406 reads
I posted a blog recently about returning a listing of all indexes for database, which is good if you want...
2010-10-16
1,144 reads
While doing some performance testing recently and utilizing some of the DMV’s I figured, I better find out when the...
2010-10-16
1,543 reads
I typically don’t blog about other people blogs, because quite frankly I don’t like giving summations of the work someone...
2010-10-14
628 reads
A while ago, I showed you how to find out what indexes were on a table using the GUI. Today,...
2010-10-14
34,444 reads
A while ago, I posted a blog on how one could perform running totals using Reporting Services and a user...
2010-10-11
4,383 reads
Presenting is a huge fear for many and it is no different for me. I have been presenting at SQL...
2010-10-10
584 reads
Recently, I came across a forum post from a user trying to determine if a directory existed in the file...
2010-10-06
13,879 reads
Here is another one of those strange but true things that I come across every so often which I thought...
2010-10-06
3,573 reads
While working on a project recently, I came across a conversion that was trying to convert a date to an...
2010-10-05
785 reads
By Vinay Thakur
As this is an Artificial Intelligence (AI) World, things are changing. We can see that...
In a containerized app, React and Chakra UI provide a robust and accessible user...
By Steve Jones
nachlophobia – n. the fear that your deepest connections with people are ultimately pretty...
A while into install I get a Microsoft OLE DB Driver for SQL Server....
Comments posted to this topic are about the item More Funny SELECTs
Comments posted to this topic are about the item Reducing the Cycle Time
What does this code return?
SELECT ( SELECT COUNT (*), MAX(soh.OrderDate) AS latestorder FROM Sales.SalesOrderHeader AS soh WHERE soh.OrderDate > '01/01/2011' AND soh.OrderDate < '01/01/2012') AS OrdersIn2000 , ( SELECT COUNT (*), MAX(soh.OrderDate) AS latestorder FROM Sales.SalesOrderHeader AS soh WHERE soh.OrderDate > '01/01/2012' AND soh.OrderDate < '01/01/2013') AS OrdersIn2001 , ( SELECT COUNT (*), MAX(soh.OrderDate) AS latestorder FROM Sales.SalesOrderHeader AS soh WHERE soh.OrderDate > '01/01/2013' AND soh.OrderDate < '01/01/2014') AS OrdersIn2002; GOSee possible answers