The Importance of Our Work
Work is important, and it's a large part of our lives, but Steve Jones notes we need to keep things in perspective.
2015-06-30
142 reads
Work is important, and it's a large part of our lives, but Steve Jones notes we need to keep things in perspective.
2015-06-30
142 reads
2015-06-29
322 reads
The PASS Summit 2015 Speaker list has been released and I wanted to congratulate everyone that was accepted. It’s a...
2015-06-26
1,253 reads
Steve Jones talks about blogging today, how it can help your career, and how easy it can be to get started.
2015-06-25
146 reads
2015-06-25
1,792 reads
Last week, Redgate Software had a large company meeting and our annual Day Out, with myself and a few dozen...
2015-06-23
708 reads
Finding staff with the proper skills can be a challenge, and it might be a reason why you choose, or remain with, a particular technology.
2015-06-23
203 reads
IBM recently turned 100 years old and Steve Jones wishes more companies would try to build their business to grow to 100.
2015-06-22 (first published: 2011-06-28)
213 reads
This Friday Steve Jones asks how you track uptime. Does your scheduled maintenance count against your metrics?
2015-06-19 (first published: 2011-01-28)
197 reads
It’s the second Tuesday of the month and time for another T-SQL Tuesday. This time it’s #67 from Jes Borland...
2015-06-19 (first published: 2015-06-09)
1,940 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