SQL Server MVP for a Sixth Year
Thank you to the Microsoft MVP Program for awarding me MVP for six years running! I love this program and...
2014-10-05
431 reads
Thank you to the Microsoft MVP Program for awarding me MVP for six years running! I love this program and...
2014-10-05
431 reads
Making last changes before sqlsat 311.
By the way, did you ever visited SQL Saturday? No? Why?
SQL Saturday is fun, SQL Saturday...
2014-10-05
635 reads
In March of this year, I celebrated 10 years at Magenic. I blogged about it and called out values and...
2014-10-05
480 reads
We hope you have enjoyed your summer and are ready to get back to learning all things SQL Server related! We...
2014-10-04
545 reads
It’s Friday, time to look back at the most popular RealSQLGuy posts of the week. Because it’s Friday and you’re...
2014-10-03
339 reads
Photo credit – Husso
I’ve always been a fan of the feeling when I find an old blog post that’s got just...
2014-10-03
835 reads
I have some great news to share. One of my bucket list items is to be a published author. I...
2014-10-02
693 reads
We’ve got a good handful of events listed for After Hours so far, but couldn’t we have more? A couple...
2014-10-02
839 reads
October 1st is one of the quarterly dates that Microsoft announces all of the new people into the MVP program....
2014-10-02
582 reads
October 1st is one of the quarterly dates that Microsoft announces all of the new people into the MVP program. It is also a day in which Microsoft recognizes...
2014-10-02
10 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