2016-10-24
1,077 reads
2016-10-24
1,077 reads
If you are attending the PASS Summit next week in Seattle, and want to attend a fun party on Thursday...
2016-10-21
496 reads
Next Monday night is the networking dinner that Andy Warren and I have put together for the last 6 years....
2016-10-21
498 reads
SQL Prompt has lots of great features that can help you write SQL quicker. However, you’ve got to train yourself...
2016-10-21 (first published: 2016-09-27)
1,842 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-10-20
554 reads
Executing R scripts can be a heavy load. Today Steve Jones wonders if SQL Server is the best place to execute these.
2016-10-20
451 reads
2016-10-20
1,140 reads
I’ll be attending the 2016 Pass Summit as a part of the Redgate Software crew. I’m not speaking this year,...
2016-10-19
465 reads
The number one million has special meaning to many people. And it's a heck of a metric to achieve in a measurement on a database system.
2016-10-19
88 reads
2016-10-19
1,190 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