BCPs – The Disaster Recovery Plan
I came up with a short acronym for my Preparation for Disaster presentation: BCPs. It describes what I think you...
2011-06-16
1,612 reads
I came up with a short acronym for my Preparation for Disaster presentation: BCPs. It describes what I think you...
2011-06-16
1,612 reads
Researchers at the University of California, San Diego have published a list of job-market hotspots, and in the top ten is...
2011-06-16
826 reads
One of the things I saw on Twitter yesterday was several folks saying their abstract submissions had been turned down...
2011-06-16
1,901 reads
I was running some tests on some purchased data this morning, and was getting a little perturbed because I was...
2011-06-16
617 reads
Yesterday we got confirmation from SQLPASS if our submitted sessions for the upcoming SQLPASSS
summit in Seattle (October 11 – 14) were...
2011-06-16
711 reads
It appears I was fortunate enough to be selected to speak at the 2011 PASS Summit. This is shaping up...
2011-06-16
526 reads
Yesterday I was thrilled to find out that my session "Common Analysis Services Design Mistakes and How to Avoid Them"...
2011-06-16
691 reads
It’s been a busy couple of weeks for SQL Server community and PASS related news.
First and probably most importantly is...
2011-06-16
659 reads
It’s been a busy couple of weeks for SQL Server community and PASS related news.
First and probably most importantly is...
2011-06-16
752 reads
I took a vacation recently (well, a really long weekend) and as I like to do, visited a few book...
2011-06-16
677 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