A Lower Level of Noise
I finally got set up to access the MVP newsgroup server today while I was working on some other projects....
2008-01-06
797 reads
I finally got set up to access the MVP newsgroup server today while I was working on some other projects....
2008-01-06
797 reads
A friend sent me a link to www.sqlcommunity.com and I think I'd list it. So far doesn't seem impressive, but...
2008-01-06
516 reads
Just a reminder to anyone in the Tampa area, or willing to travel, that the call for speakers for the...
2008-01-03
239 reads
Back in 2000 I began writing for swynk.com in hopes of learning more about SQL Server and beginning to make...
2008-01-03
6,198 reads
After a couple of months of discussion, End to End Training has scheduled me to teach a two day beginning...
2008-01-03
474 reads
One of the things I took from my overall performance last year is I need to get better at time...
2008-01-03
647 reads
Steve finally got the bugs worked out of the recent blog software upgrade and RSS should be available again. Note...
2008-01-03
458 reads
Just saw that Bayer posted a note confirming that he is a 2008 MVP. I met Bayer a couple years...
2008-01-02
187 reads
Google has - and continues - to do some amazing things. It's easy to be awed by their products and their infrastructure,...
2008-01-01
461 reads
Steve is a 2008 SQL Server MVP. Well deserved, I can think of few people more visible in the community...
2008-01-01
644 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