2014-09-19
6 reads
2014-09-19
6 reads
2014-09-19
13 reads
In this session Prakash will walk through the process he has implemented to alleviates many of the pain points for...
2014-09-19
659 reads
More notes:
Registration at 520. Not as big a bump this week as we expected, probably due to the message going...
2014-09-18
537 reads
Recovery Time Objective (RTO)
What is it and why does it matter?
I am actually walking this time! Join me to walk...
2014-09-18
224 reads
Recovery Time Objective (RTO)
What is it and why does it matter?
I am actually walking this time! Join me to walk...
2014-09-18
506 reads
Being engrossed with the daily tasks at hand I completely missed this month’s T-SQL Tuesday is being brought to you...
2014-09-18
322 reads
This guy looks just like me a few weeks ago only one difference…..he has hair!!! Okay seriously though, I felt...
2014-09-18
473 reads
Every DBA in their career should have done DR drill at some point, in fact it should be done in...
2014-09-18
2,451 reads
A friend recently asked me about my involvement with PASS, and that lead to the two questions in the title....
2014-09-17
775 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....
Bonjour à tous, La semaine dernière, nous avons effectué une mise à niveau de...
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