Utah Code Camp is April 26, 2008
Tjay Belt forwarded me the information about the Utah Code Camp this year. Still early in the process, no schedule...
2008-03-18
1,526 reads
Tjay Belt forwarded me the information about the Utah Code Camp this year. Still early in the process, no schedule...
2008-03-18
1,526 reads
Just a reminder that the event is this Saturday. The tentative schedule has been posted and it looks like I'll...
2008-03-17
1,490 reads
In my last post, I talked about what prompted me to give a deep thought to documentation work. Documentation, to me,...
2008-03-17
1,019 reads
I've been emailing back and forth with IndyTechfest organizer John Magnabosco over the past year as we've traded notes about...
2008-03-16
706 reads
Saw a mention of this in the latest MSDN Magazine, you can download Reflector.SQL2005Browser and install it as an add-in for...
2008-03-13
805 reads
I'm starting to see results from other people testing compression and it seems that the data compression can really provide...
2008-03-13
643 reads
I've been swarmed under at work and with migraines. That should change over the weekend (the swarmed under... migraines come...
2008-03-13
614 reads
Yesterday I posted Building YOUR Brand that described a formula for becoming rich and famous. Well, perhaps richer than you are...
2008-03-12
562 reads
There has been a great deal of wailing and gnashing of teeth regarding the scuttlebutt that SP2 will be the...
2008-03-12
708 reads
Between teaching classes, attending community events, and participating in the local user group I get to have a lot of...
2008-03-11
680 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