Using the DAC
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
739 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
739 reads
2015-08-03
1,597 reads
An invitation to hack United's IT systems has resulted in vulnerabilities being found and hackers rewarded for disclosing the issues.
2015-07-30
114 reads
Steve Jones discusses the decision to hire someone that fits in with your culture at work, and what that means.
2015-07-29
157 reads
I wrote recently about my philosophy for service accounts, and wanted to add a few more thoughts.
Security is important for...
2015-07-28
1,517 reads
An amazing visualization of basketball players has Steve Jones encouraging you to find your own pet project and showcase some skills.
2015-07-28
148 reads
This is a bit of an off topic post from the technical stuff, but there’s a bit of a tie-in,...
2015-07-27
1,045 reads
Can you deploy your database changes without any downtime? Steve Jones has a few notes.
2015-07-27
128 reads
The challenges of getting enough resources for our projects aren't always apparent.
2015-07-27
148 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
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....
A RAG pipeline that answers questions in the demo is not the same thing...
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