Webcast on exceptions and errors in SQL Server
When you have an hour to spare, jump over and view this useful discussion about errors and exceptions in SQL...
2007-05-21
1,451 reads
When you have an hour to spare, jump over and view this useful discussion about errors and exceptions in SQL...
2007-05-21
1,451 reads
I was at DevTeach/SQLTeach in Montreal last week. The conference was very well run and the organizers did a great...
2007-05-19
1,313 reads
It's been an interestng week here at the Microsoft BI Conference in Seattle and a first for me happened this...
2007-05-11
1,474 reads
I know writing and working on SQL Server is hard. It's a huge project and just managing that is hard....
2007-05-04
1,379 reads
Our next
meeting will be on Thursday, May
3rd, at 6:30 PM. Training Concepts will once again be our
gracious host....
2007-05-03
1,562 reads
Despite being without power for a few days, a hectic scramble at work to get things done, and kids off...
2007-05-01
1,479 reads
We had a blizzard on Tuesday in Denver. Apr 24 and we got nearly a foot of snow out at...
2007-04-25
1,428 reads
One thing is always certain about information technology: there is always change. This past week I was pitching in on...
2007-04-23
1,596 reads
I just finished the book Brute
Force: Cracking the Data Encryption Standard by Matt Curtin. It covers the work of...
2007-04-16
1,787 reads
The presentation How to Be a Consultant has been posted to the Midlands PASS Chapter website. The presentation was given...
2007-04-15
1,608 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