2015-07-24
6 reads
2015-07-24
6 reads
2015-07-24
6 reads
2015-07-24
6 reads
2015-07-24
10 reads
on 25th july 8.30 am pst, i will be speaking on “standardized sql installations – script review & demo)” @ sqlsaturday, sacramento!!, if...
2015-07-24
720 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
It may happen so that you don`t know the password of sa user for SQL Server you inherited from somebody....
2015-07-31 (first published: 2015-07-23)
4,799 reads
One of the things I enjoy about the SQL community is the many people that you come into contact with....
2015-07-23
204 reads
One of the things I enjoy about the SQL community is the many people that you come into contact with....
2015-07-27 (first published: 2015-07-23)
416 reads
Originally appearing at ForITPros.com. Henry Ford is reported to have once said, “Whether you think you can or think you can’t – you’re right.” That’s great insight. Too often...
2015-07-23
17 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