Get Away from the Heat and Learn some Database Version Control
I have enjoyed the trips I’ve made to New Orleans and Baton Rouge in the past. It’s a good getaway,...
2015-07-24
613 reads
I have enjoyed the trips I’ve made to New Orleans and Baton Rouge in the past. It’s a good getaway,...
2015-07-24
613 reads
The poll this week looks to the future and artificial intelligence. Steve Jones wonders if we'll ever really see this.
2015-07-24
163 reads
Recently someone sent me a question about service accounts. They weren’t sure how they should go about setting accounts up...
2015-07-23
553 reads
The job of the DBA is constantly evolving, but one thing has always been critical: access to data.
2015-07-23
248 reads
Last year at the PASS Summit, Kristen Benzel and Argenis Fernandez put on a fundraiser to raise money for Doctors...
2015-07-21
704 reads
We must learn to deal with the reality of our situation, along with the limitations.
2015-07-21
125 reads
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-20
918 reads
One important skill is for the DBA or developer of the future is being sure they can present data to clients in a way they can use it.
2015-07-20
203 reads
2015-07-20
1,909 reads
2015-07-17
1,364 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