Katmai July 2008 CTP is Out
I'm downloading now, and you need some sort of inviation to do so, but it's available and ready for you...
2007-08-01
614 reads
I'm downloading now, and you need some sort of inviation to do so, but it's available and ready for you...
2007-08-01
614 reads
Q I need an easy way to see if a delete transaction has fired a trigger. Do you have any...
2007-08-01
633 reads
"Database Professional Toolkit" with Brian and Jeremy
Midlands PASS Chapter - August 2, 2007 Meeting
Sponsored by Red Gate Software
The Midlands PASS Chapter...
2007-07-31
1,564 reads
We've just moved all the PASS chapters that were hosted on ~.ssc.com domains over to ~.sqlgroups.com. This is part of...
2007-07-27
1,559 reads
If you're a Microsoft MVP, ApexSQL has brought back their industry experts program. You can find out more about it...
2007-07-25
1,734 reads
I imagine many of you have seen or attended a Code Camp, a one day free mini conference type event...
2007-07-23
1,503 reads
I actually started writing an article on this, but it's been sidetracked with travel and other stuff. However I do...
2007-07-21
1,480 reads
First saw information about a tool called SQL Internals Viewer in a blog post here at Kalen Delaney's blog. The...
2007-07-20
1,660 reads
I've looked at the daily newsletter for a year now and I've wondered about the table of contents. It seems...
2007-07-19
1,405 reads
This turned out to be a nice event, better venue than last year. Well organized is always appreciated even at...
2007-07-18
1,373 reads
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...
Yesterday I gave a talk for MSSQLTips called “Building a DBA Agent for Your...
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...
Comments posted to this topic are about the item Looking for New Blood
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