2016-08-23 (first published: 2015-05-01)
1,387 reads
2016-08-23 (first published: 2015-05-01)
1,387 reads
2013-04-17 (first published: 2013-04-03)
1,443 reads
2013-03-19 (first published: 2013-03-01)
1,037 reads
Script to generate script to detach or attach user databases
2013-02-15 (first published: 2013-01-29)
4,961 reads
Script to reorganize all indexes on all tables in user databases
2013-02-14 (first published: 2013-01-31)
3,223 reads
2013-02-06 (first published: 2012-12-27)
1,822 reads
Changes the database compatibility level of all databases to the given level.
2013-01-31 (first published: 2013-01-07)
921 reads
2012-12-03 (first published: 2012-11-07)
2,004 reads
2012-10-04 (first published: 2012-04-10)
2,005 reads
2012-07-25 (first published: 2012-07-12)
2,474 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