Data Loss or Downtime
This Friday Steve Jones has a DR poll. He asks what might be more important to you in a disaster and why.
2015-07-10 (first published: 2011-01-07)
253 reads
This Friday Steve Jones has a DR poll. He asks what might be more important to you in a disaster and why.
2015-07-10 (first published: 2011-01-07)
253 reads
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-08
3,890 reads
Today Steve Jones talks about the ways in which we interview new developers. Are they working or do we need a new way? Should we be considering those people that have actually accomplished something?
2015-07-07 (first published: 2011-06-08)
559 reads
2015-07-07
1,332 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-07-03 (first published: 2015-06-24)
6,401 reads
We're halfway through the 2015 year and Steve Jones has a few thoughts for you this holiday weekend.
2015-07-03
83 reads
2015-07-03
2,018 reads
Announcements recently for changes in SSMS mean that the tool many of us rely on is growing up.
2015-07-02
223 reads
What's the best way to enter this business? Steve Jones has a few thoughts on the traditional CS degree.
2015-07-01
253 reads
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-01
1,963 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