Business of Software 2008 - Selling 101
I'm starting a series of blog posts from the Business of Software conference
that I attended last week in Boston. If...
2008-09-16
851 reads
I'm starting a series of blog posts from the Business of Software conference
that I attended last week in Boston. If...
2008-09-16
851 reads
We experimented with some video training back in 2004/2005 on SSC, but we just didn't have the time/energy to pursue...
2008-09-15
576 reads
I haven't done as much reading on the Kindle since I've been home from my last trip, mainly because I've...
2008-09-15
824 reads
I'm starting a series of blog posts from the Business of Software conference
that I attended last week in Boston. If...
2008-09-15
752 reads
Pam Shaw & Wes Dumey are leading the charge for the 2nd annual Tampa SQLSaturday on January 24, 2009. They are...
2008-09-14
481 reads
One very common mistake I see when reviewing code is the case where the select statement is returning multiple rows,...
2008-09-14
538 reads
I'm starting a series of blog posts from the Business of Software conference
that I attended last week in Boston. If...
2008-09-12
767 reads
It's been two weeks since I got the Kindle. Actually it will be two weeks in a few hours. I've...
2008-09-12
987 reads
One of the big decisions around vacations is whether it should be a 'do something' vacation or a 'do nothing'...
2008-09-11
1,257 reads
I'm starting a series of blog posts from the Business of Software conference
that I attended last week in Boston. If...
2008-09-11
798 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
How I used AI for this postChatGPT to generate images based on info specifically...
By ReviewMyDB
My T-SQL Tuesday #202 entry for Marlon Ribunal's invitation on memorable SQL Server outages....
Bonjour à tous, La semaine dernière, nous avons effectué une mise à niveau de...
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...
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