Looking Back: #sqldinner at #sqlsummit 2016
Last week was the 2016 Pass Summit, and this was one of the few times that PASS did not provide...
2016-11-02
580 reads
Last week was the 2016 Pass Summit, and this was one of the few times that PASS did not provide...
2016-11-02
580 reads
2016-11-02
1,078 reads
Moving security changes between server instances can be a cumbersome process, but it doesn't need to be with the PowerShell cmdlet, Copy-SqlLogin.
2016-11-01
2,323 reads
2016-10-31
63 reads
The release of Analysis Services in Azure means the platform has a future.
2016-10-31
78 reads
One of the things I struggled with a bit was getting test results to appear in VSTS from my builds....
2016-10-31 (first published: 2016-10-18)
1,001 reads
2016-10-31
1,172 reads
Not all selfies, and not enough, but lots of changes to meet people at the Summit this week.
The other Steve...
2016-10-28
876 reads
2016-10-28
906 reads
Tonight is the #RedgateRocks party at 1927 Events in Seattle. You’ll need to get a wristband from the Redgate Software...
2016-10-27
489 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