Give Camp Orlando on Oct 26-28, 2012
My friend Richard Salogub is heading up this years Give Camp Orlando, an effort to link developers and IT professionals...
2012-10-08
774 reads
My friend Richard Salogub is heading up this years Give Camp Orlando, an effort to link developers and IT professionals...
2012-10-08
774 reads
Throughout the week, I like to tweet links to the things that I’ve been reading. Since they all come out...
2012-10-08
736 reads
I was approached with a unique problem to solve; find out who has what permissions on my Database Servers. This...
2012-10-08
455 reads
Come and join me live in London this coming December where I will be presenting Learning Tree’s2109 SQL Server Virtualization...
2012-10-08
840 reads
I was just answering an email and realized I’m behind on posting on a few topics, one of them the...
2012-10-08
932 reads
Last week I received this comment/question from one of my fabulous First Timers:
I have a good natured question coming from...
2012-10-08
739 reads
Tonight, October 8th at 6:30pm I am virtually speaking at the OKC SQL Server User Group. I had a blast...
2012-10-08
550 reads
The Omaha SQL Server Users Group meeting for October is coming up this Tuesday, and the coordinators have prepared a...
2012-10-08
445 reads
Database files are volatile, constantly being changed and updated, so that, like any other volatile files in the system, there...
2012-10-08
1,387 reads
Concatenating row values (within groups) into column in SSRS and TSQL
Concatenating row values into column is a never ending topic...
2012-10-07
2,764 reads
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...
By Steve Jones
“A multitude of bad ideas is necessary for one good idea” – from Excellent...
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