Award from MSSQLTIPS.com
Today, I am excited and humbled to learn that I am awarded “Rookie of the Year – 2014” by MSSQLTips.com.
I have...
2015-01-14
687 reads
Today, I am excited and humbled to learn that I am awarded “Rookie of the Year – 2014” by MSSQLTips.com.
I have...
2015-01-14
687 reads
Updated 2015-02-02 I have changed the details about passing multiple filters at the bottom, see the codepex site for full details.
tldr; Download the filter from: https://agilesqlclub.codeplex.com/releases/view/610727 put the dll...
2015-01-14
54 reads
Updated 2015-02-02 I have changed the details about passing multiple filters at the bottom, see the codepex site for full...
2015-01-14
75 reads
Updated 2015-02-02 I have changed the details about passing multiple filters at the bottom, see the codepex site for full...
2015-01-14
1,240 reads
One of the things that DBAs love to do is keep their servers running and healthy. A healthy server, after all, is your ticket to a stress free day...
2015-01-13
12 reads
One of the things that DBAs love to do is keep their servers running and healthy. A healthy server, after...
2015-01-13
829 reads
Mike and I have been extremely busy over the Xmas period and we’ve finally sorted dates for our 2015 instalment of...
2015-01-13
470 reads
SQL Server 2014 is a great release with high performance features like In Memory OLTP, Updatable Column Store Indexes etc.
These features still...
2015-01-15 (first published: 2015-01-13)
10,094 reads
This is a follow up blog post based on the Intro to Data Factory session I gave on the Training...
2015-01-13
983 reads
The invitation for T-SQL Tuesday this month comes from Robert Pearl. It’s called HealthySQL and it’s a topic I like....
2015-01-13
807 reads
A RAG pipeline that answers questions in the demo is not the same thing...
By Steve Jones
“A multitude of bad ideas is necessary for one good idea” – from Excellent...
Yesterday I gave a talk for MSSQLTips called “Building a DBA Agent for Your...
Comments posted to this topic are about the item Adding new column with DEFAULT
I've got a web application for my side business. I've added a SQL Server...
Comments posted to this topic are about the item Looking for New Blood
Which number will the COUNT() return after executing the following statements:
DROP TABLE IF EXISTS #test; CREATE TABLE #test (id INT) INSERT INTO #test (id) SELECT * FROM GENERATE_SERIES(1, 3) AS gs ; ALTER TABLE #test ADD flag BIT CONSTRAINT DF_#test_flag DEFAULT 0; go UPDATE #test SET flag = 0 WHERE id = 1 UPDATE #test SET flag = 1 WHERE id = 2 INSERT INTO #test (id) VALUES (4) SELECT COUNT(*) FROM #test AS t WHERE flag = 0See possible answers