2015-09-15
1,805 reads
2015-09-15
1,805 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-09-14
676 reads
It’s the time of the year when PASS holds its annual elections for the board of directors. This year we...
2015-09-11
863 reads
2015-09-11
264 reads
2015-09-11
1,540 reads
2015-09-10
287 reads
Every Monday night on the week of the PASS Summit. Andy Warren and I host a networking dinner. This year...
2015-09-10
638 reads
2015-09-10
1,686 reads
2015-09-09
1,529 reads
2015-09-08
163 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...
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