Live Blogging PASS Summit
This year I was fortunate enough to get the invite to join the live bloggers table for both keynotes going...
2015-10-28
407 reads
This year I was fortunate enough to get the invite to join the live bloggers table for both keynotes going...
2015-10-28
407 reads
The PASS Summit opens today with the first keynote. This is one of the few times that I’ve declined the...
2015-10-28
492 reads
The PASS Summit opens today with the first keynote. This is one of the few times that I’ve declined the...
2015-10-28
560 reads
What hasn't received any TLC is Extended Events from the Azure SQL Database perspective. You may be wondering why it matters since I just said that Extended Events is...
2015-10-28
9 reads
So far I have strictly focused on Extended Events for SQL Server installations. This means I have been looking at Extended...
2015-10-28
762 reads
Of all the posts I’ve written I think this one is my favorite, even though it’s not a technical post....
2015-10-28
504 reads
PASS 2015 has kicked off in Seattle, well the precon’s have anyway on Mon & Tue. The actual conference starts on Wed-Fri! I attended a precon session today called Optimize...
2015-10-28
10 reads
PASS 2015 has kicked off in Seattle, well the precon’s have anyway on Mon & Tue. The actual conference starts on...
2015-10-28
488 reads
2015-10-27
382 reads
Note this fix only works on Windows Server 2012/Windows 8 or later. A different method is required on Windows Server...
2015-10-27
12,018 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