2016-06-07
1,427 reads
2016-06-07
1,427 reads
Microsoft has released the first version of a new sample database for SQL Server.
2016-06-06
659 reads
The Beta is out. I’ve been waiting for this, and was glad to see Carly’s post on the product. I’ve...
2016-06-06
1,342 reads
Today Steve Jones talks about the risk inherent in any project, and how we should be aware of our mistakes, learn from them, and sometimes just give up when we've made too many.
2016-06-03 (first published: 2012-02-22)
234 reads
2016-06-03
1,749 reads
2016-06-02
95 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-06-01
529 reads
2016-06-01
131 reads
2016-06-01
1,465 reads
The overloading of terms creates confusion, which means that communication is more difficult.
2016-05-31
95 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