2016-06-22
1,220 reads
2016-06-22
1,220 reads
Larry Page is a very interesting person, one that is looking to change the world.
2016-06-21
135 reads
A few years back, Redgate Software released SQL Search. This was an internal project that became a free product we...
2016-06-21 (first published: 2016-06-15)
4,073 reads
2016-06-21
1,312 reads
I did some work a 3-4 years ago, learning about the Windowing functions and enjoying them so much I built...
2016-06-20
781 reads
After the crash of an US Air Force database was reported, Steve Jones has some advice.
2016-06-20
127 reads
2016-06-20
86 reads
2016-06-20
1,309 reads
I upgraded my SQL Prompt recently, mostly as a habit. The team led by David and Aaron are always adding...
2016-06-17 (first published: 2016-06-09)
2,508 reads
SQL Server 2016 runs faster, sometimes without you changing anything.
2016-06-17
280 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