Speaker Lessons!! Un-SQL Friday #004 Roundup
We had a cozy (read: small) UnSQL Friday this time around, and I’m good with that. Every entry we got...
2011-06-09
846 reads
We had a cozy (read: small) UnSQL Friday this time around, and I’m good with that. Every entry we got...
2011-06-09
846 reads
Someone asked me in a webinar how to change the default backup directory. I knew, but realized that I didn’t...
2011-06-09
24,099 reads
The school my daughter attends gives each student a workbook type thing at the beginning of each year, and it...
2011-06-09
605 reads
I woke up to this very cool photo from my employer.
I was checking my Twitter feed, and noticed quite a...
2011-06-08
1,005 reads
Before moving with next blog. We should be aware of some information about Isolation level. As the trasaction is depends...
2011-06-08
850 reads
Thanks again to everyone who attended. Technical problems aside I had a great time and there were some great questions!
If...
2011-06-08
578 reads
The following is a combination of notes from Wes Brown’s presentation today, with edited details from his http://sqlserverio.com/ post on...
2011-06-08
3,890 reads
Turns out there is a snag when it comes to using Internet Explorer 9 with SharePoint and SQL Server 2008...
2011-06-08
3,380 reads
My last in the series on storage and SQL Server is today Wed, Jun 8, 2011 3:00 PM EDT (2:oo...
2011-06-08
674 reads
Yes, I went on the SQL Cruise to Alaska. Yes, it was as grand as you’ve heard. Yes, I’m going...
2011-06-08
539 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