SQLSaturday #9 in Greenville, SC on Oct 11, 2008
Paul Waters and team from the SQL Server Innovators Guild have decided to host a SQLSaturday at ECPI Greenville, SC...
2008-08-18
465 reads
Paul Waters and team from the SQL Server Innovators Guild have decided to host a SQLSaturday at ECPI Greenville, SC...
2008-08-18
465 reads
"Culture", according to Merriam-Webster Dictionary http://www.merriam-webster.com/dictionary/culture, has one definition as
"the set of shared attitudes, values, goals, and practices that characterizes an...
2008-08-16
1,841 reads
The Charlotte SQL Server User Group meeting will be held online on August 20th at 12 Noon (EDT). They'll have...
2008-08-15
650 reads
I'm glad I'm not this slow, or maybe it's timed for the SQL Server release, but my TechEd Online panel,...
2008-08-15
817 reads
Part of running a businness is deciding when and where to spend your hard earned cash. It's interesting to look...
2008-08-14
535 reads
Like a lot of folks my age (in their 30s), I grew up on comics, both comic strips in the...
2008-08-14
784 reads
Recently I needed to make a call and the only number I had was a mnemonic one. I get why...
2008-08-13
1,905 reads
The following events are for August 21, 2008, in downtown Columbia, SC.
Morning - Momentum: IT ExecsMorning - TechNet: Vista, PowerShell, Group PolicyAfternoon...
2008-08-13
2,401 reads
SSIS access permissions are managed via Component Services. It is the DCOM object named MSDTSServer. Here are the steps to...
2008-08-13
46,030 reads
2008-08-13
1,095 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....
Hello everyone, Last week we performed an upgrade of our SQL Server instance, moving...
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