How to Do and Not Do Customer Support
I recently purchased a Dell XPS M1530 laptop for use both for professional work (consulting & presentations) and ministry (mostly presentations)....
2008-06-10
797 reads
I recently purchased a Dell XPS M1530 laptop for use both for professional work (consulting & presentations) and ministry (mostly presentations)....
2008-06-10
797 reads
I was going to hit a Powershell lab because the Scripting Guys at TechNet write great columns, but it filled...
2008-06-10
1,304 reads
It's a rite of passage in our business that we have to learn the RAID levels, and I still enjoy...
2008-06-09
509 reads
Attendance on Saturday about 450 across the communities (SQL, .Net, DNN, etc). Not as big as we'd hoped, but still...
2008-06-08
437 reads
Shawn Weisfeld has been the President of ONETUG (Orlando .Net Users Group) for the past three years and has just...
2008-06-08
480 reads
I still remember hearing an executive in IT at Virginia Power start a sentence like this, and he went on...
2008-06-06
703 reads
One of the big themes this year for Microsoft (and I just saw it on the PASS Summit site) is...
2008-06-05
711 reads
Today I ran to the co-location facility for FourDeuce and End to End Training, to upgrade our database server to...
2008-06-05
679 reads
Our main presentation was on 'Unlocking the Power of SQL Compact' by Steve Lasker & Ginny Caughey. Went better than I expected...
2008-06-04
422 reads
The folks at attrition.org have been stalwarts in providing information to the security community for ages, it seems. I first...
2008-06-04
679 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