Like a Phoenix rising from the ashes ...
NOTE: At least one project will be selected every week for the remainder of 2010. Like the Phoenix rising from...
2010-07-31
1,438 reads
NOTE: At least one project will be selected every week for the remainder of 2010. Like the Phoenix rising from...
2010-07-31
1,438 reads
WOW! A couple of weeks ago, I announced that I would be offering a few MSDN Ultimate subscriptions to unemployed...
2010-07-21
594 reads
UPDATE: Additional Microsoft MVPs have joined the project and we will now be selecting at least two (2) now three...
2010-07-12
469 reads
NEW: Project Criteria and Submission Here I was again awarded the ‘Most Valuable Professional’ (MVP) designation from Microsoft for my...
2010-07-02
555 reads
"The world's favorite season is the spring. All things seem possible in May." - Edwin Way Teale This spring, the Portland,...
2010-02-22
463 reads
Database Design. Sounds simple, and at the same time, demanding. I mean, what's to design. You just need a few...
2009-12-15
358 reads
Yesterday, I was able to cause a potential customer to buy a competing product. In fact, according to my tally...
2009-11-15
399 reads
Yesterday, Jonathan Kehayias wrote in his blog post " Have you got air in your spare.." about dealing with a flat...
2009-10-22
362 reads
I was engaged in a conversation recently where the topic under discussion was "What defines an "A" class player?" Others...
2009-05-02
381 reads
Imagine going to a casino with $100 dollars to gamble. As you enter, you notice a vending machine that sells...
2009-03-22
634 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