ReadyRoll and Octopus Deploy Webinar
I’ll be hosting a webinar next week, Thursday, July 28, with Daniel Nolan (t) (founder of ReadyRoll and fellow Redgate...
2016-07-21
567 reads
I’ll be hosting a webinar next week, Thursday, July 28, with Daniel Nolan (t) (founder of ReadyRoll and fellow Redgate...
2016-07-21
567 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-07-21
1,754 reads
2016-07-21
1,621 reads
I wrote a short piece over on the Redgate blog that covers how SQL Compare can catch and build a...
2016-07-20
461 reads
I’m disturbed.
I read an announcement from the PASS organization this week that bothers me. I am less upset with the...
2016-07-20
779 reads
The march to the cloud is ongoing and Steve Jones says you should prepare yourself. Even if your company doesn't move.
2016-07-20
113 reads
2016-07-20
1,244 reads
As I’m doing a little development with ReadyRoll, I’m documenting some of the things I learn about the product.
A few...
2016-07-19
702 reads
Today Steve Jones talks about the problem of having code that people are afraid to change or deploy.
2016-07-19
142 reads
2016-07-19
1,321 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