2015-08-18
1,401 reads
2015-08-18
1,401 reads
At Redgate Software, we have a progression of the stages of a database development pipeline. These are the various ways...
2015-08-17 (first published: 2015-08-06)
2,125 reads
Is a software deployment responsible for a plane crash? That's a scary thought.
2015-08-17
134 reads
This weekend I’ll be attending SQL Saturday #403 in Louisville, KY. If you’re in the area, think about taking a...
2015-08-17
877 reads
2015-08-17
1,610 reads
This Friday Steve Jones looks at the setup for your software pipeline. He's wondering how complex it is with how many separated environments.
2015-08-14
159 reads
2015-08-14
1,268 reads
We’ve got another DLM workshop on Database Source Control taking place in New York City on August 27. It’s in...
2015-08-13 (first published: 2015-08-06)
1,268 reads
2015-08-13
1,398 reads
This is a good T-SQL Tuesday topic for me. This month Ken Wilson asks everyone to write on encryption, which...
2015-08-11
910 reads
By ReviewMyDB
My T-SQL Tuesday #202 entry for Marlon Ribunal's invitation on memorable SQL Server outages....
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...
Hello everyone, Last week we performed an upgrade of our SQL Server instance, moving...
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...
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