Celebrating July 4th
I try to limit the number of truly off topic posts I do, but today is a special day in...
2008-07-03
242 reads
I try to limit the number of truly off topic posts I do, but today is a special day in...
2008-07-03
242 reads
The Midlands PASS Chapter hosts:
SQL Server MVP John Welch
July 17, 2008 at Training Concepts
The Midlands PASS chapter will hold a...
2008-07-03
728 reads
My friend Shawn Weiseld posted a note about the new INETA Champs Program. Looks interesting and is a nice step...
2008-07-02
351 reads
I saw an interesting note about how Intel is warning developers that they need to learn to program with multiple...
2008-07-02
648 reads
As expected, I forgot someone again in my MVP announcement. Last time I announced Kathi Kellenberger and Andy Leonard, forgetting...
2008-07-02
657 reads
I was fighting an error that was very rare to appear. I originally put a post on a MS forum
http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.sqlserver.replication&tid=57229124-0a5a-4ec3-9055-a06b7869b872&cat=&lang=&cr=&sloc=&p=1
The...
2008-07-02
4,455 reads
I commented in an earlier post about the challenges PASS has in trying to select a 100 or so speakers...
2008-07-01
298 reads
Today's the day that new MVPs are notified for Q3 and two longtime community members, Jeff Moden and Michael Coles,...
2008-07-01
712 reads
MS Word 2007 (and probably earlier versions) have the ability to do a basic document compare, useful if you're at...
2008-06-30
1,337 reads
Well, I almost missed blogging for the entire month of June. I'm sure that this fact didn't go unnoticed by...
2008-06-30
1,403 reads
By ReviewMyDB
My T-SQL Tuesday #202 entry for Marlon Ribunal's invitation on memorable SQL Server outages....
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...
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