2016-11-09
1,119 reads
2016-11-09
1,119 reads
When we set up Game Night, we decided to sell tickets to reduce our risk. However, we didn’t have a...
2016-11-08
570 reads
2016-11-08 (first published: 2013-02-14)
214 reads
It’s T-SQL Tuesday again, and for $#84, we have a non-technical topic. Hopefully this will then let us produce more...
2016-11-08
596 reads
SQL Prompt is an amazing tool for writing T-SQL. It helps you to concentrate on your code, without having to...
2016-11-08
755 reads
2016-11-07
1,085 reads
I’m trying to look back at some of the events of the recent Summit, and Game Night was one of...
2016-11-04
555 reads
This week Steve Jones has a bit of a competition. Share with him how fast you can back up a 1TB database.
2016-11-04
216 reads
2016-11-03
1,292 reads
We depend on data quality to run our businesses efficiently. However, it's a problem when we mess that data up on purpose.
2016-11-02
89 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