Continuous Delivery In Real Life
Everyone wants to know who is actually using Continuous Deliver for their software. Today Steve Jones has a prominent example.
2015-07-16
298 reads
Everyone wants to know who is actually using Continuous Deliver for their software. Today Steve Jones has a prominent example.
2015-07-16
298 reads
2015-07-15
120 reads
Is it more imortant to use the data or your experience? Does one have more weight than the other?
2015-07-14
137 reads
Last year at this time I was nearing the end of my sabbatical. I’ve been using the Timehop app on...
2015-07-14
729 reads
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-13
764 reads
We’ve got more Workshops coming this fall from Redgate Software to help you get the most out of our tools...
2015-07-13
758 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-07-13 (first published: 2015-07-02)
2,403 reads
2015-07-13
171 reads
Steve Jones thinks that we are not doing a great job of harnessing the brain power of our entire teams.
2015-07-13 (first published: 2011-01-06)
320 reads
2015-07-13
1,568 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
How I used AI for this postChatGPT to generate images based on info specifically...
By ReviewMyDB
My T-SQL Tuesday #202 entry for Marlon Ribunal's invitation on memorable SQL Server outages....
Hello everyone, Last week we performed an upgrade of our SQL Server instance, moving...
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...
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