Looking at SSDT upgrade scripts
I have been using SSDT seriously for a couple of years now and have really been impressed with the code...
2015-11-01
537 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code...
2015-11-01
537 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code that is generated to upgrade schemas and over that...
2015-11-01
5 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code...
2015-11-01
27 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code...
2015-11-01
33 reads
I know I only posted one other blog about Pass but I’ve been way too busy over the last couple...
2015-11-01
331 reads
PASS 2015 continues (and finishes up today!) in Seattle. Its been an amazing conference this year with a few things really hitting home; Amazing technology announcements around SQL 2016 CTP3...
2015-10-31
9 reads
PASS 2015 continues (and finishes up today!) in Seattle.
Its been an amazing conference this year with a few things really...
2015-10-31
1,032 reads
I have just finished delivering my session, The Data Loading Performance Presentation at PASS Summit 2015. It went very well,...
2015-10-30
1,066 reads
SQL Server statistics can make things a bit freaky. You might have read one of my previous articles portraying a...
2015-10-30
1,561 reads
This was a really great week!
So many sessions by great speakers, lots of community events, parties and fun. I met...
2015-10-30
960 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