SQLCMD and SET QUOTED_IDENTIFIER
Let’s talk about something simple today. You might already be knowing this, but if you haven’t seen/noted this before then...
2014-11-20 (first published: 2014-11-14)
7,882 reads
Let’s talk about something simple today. You might already be knowing this, but if you haven’t seen/noted this before then...
2014-11-20 (first published: 2014-11-14)
7,882 reads
This was one of those days I was waiting to happen. You might be wondering whats special? Yes, this day...
2014-11-10
840 reads
PASS President Thomas LaRock on stage !
PASS President Thomas LaRock kicked off the summit keynote.
Tom talked about the history of...
2014-11-05
870 reads
I attended my 1st #SQLinthecity event hosted by RedGate yesterday. This is one of those events which I wanted to attend...
2014-11-05
982 reads
November is not the right time to visit Seattle (Blame the rain!), but I kinda like November because that’s when...
2014-11-03
527 reads
I’m a great fan of running the latest version of Windows Server whenever I deploy SQLServer. I always try to...
2014-10-10 (first published: 2014-10-04)
6,154 reads
As promised Microsoft released SQL Server 2008 R2 SP3 last Friday, and now this is your opportunity to test and...
2014-09-29
1,423 reads
Those Dev’s/UX designers out there at Microsoft seems to be pretty busy as they releasing back to back updates to windows...
2014-08-18 (first published: 2014-08-12)
7,400 reads
This is one of those posts which is pending for a very long time. I was pretty excited when Azure...
2014-06-26
913 reads
SQL Server 2014 is deeply integrated with Windows Microsoft Azure and moving an On-prem database to a Microsoft Azure VM...
2014-04-24 (first published: 2014-04-16)
1,939 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...
hi, I have a table called Rules Create table Rules ( Id int ,...
I am currently upgrading a very old database running SQL Server 2008 to SQL...
Hi Team, I am planning to apply security updates for SQL Server 2016 on...
What is returned from this query?
SELECT ( SELECT COUNT (*) FROM Sales.SalesOrderHeader AS soh WHERE soh.OrderDate >= '01/01/2011' AND soh.OrderDate < '01/01/2012') AS OrdersIn2011 , ( SELECT COUNT (*) FROM Sales.SalesOrderHeader AS soh WHERE soh.OrderDate >= '01/01/2012' AND soh.OrderDate < '01/01/2013') AS OrdersIn2012 , ( SELECT COUNT (*) FROM Sales.SalesOrderHeader AS soh WHERE soh.OrderDate >= '01/01/2013' AND soh.OrderDate < '01/01/2014') AS OrdersIn2013;See possible answers