SQLSaturday #52 - Colorado Details
What is SQL Saturday?
SQLSaturday is a training event for SQL Server professionals and those wanting to learn about SQL Server....
2010-09-12
508 reads
What is SQL Saturday?
SQLSaturday is a training event for SQL Server professionals and those wanting to learn about SQL Server....
2010-09-12
508 reads
I was asked recently by Chris Shaw who is the site manager for SSWUG.org, if I was interested in speaking...
2009-09-27
467 reads
To address a few questions on what does the board actually do and to bring more visibility to all of...
2009-09-10
701 reads
Dan English put up a blog post on his experiences with installing Gemini. His post is loaded with screen shots...
2009-08-31
1,367 reads
Image a full day of SQL Server and BI training. Even better yet, a full day of FREE training. Well PASS (Professional...
2009-08-24
540 reads
I did a presentation last week for the Denver SQL Server User Group (www.DenverSQL.org) and the Colorado Springs SQL Server User Group...
2009-06-26
1,516 reads
Denver SQL Server User Group:
A “Biking Buddy” Adventure Works hospitality report. Always have something in common to talk about with...
2009-02-19
810 reads
We use the Analysis Services Deployment Wizard when moving our cubes from Dev to QA and then QA to Prod. ...
2009-01-07
328 reads
I attended this years PASS Summit in Seattle and it turned out to be a great event. Many of the...
2008-12-04
478 reads
You will see this or a similar code sample when referring to clearing the analysis services cache. However, I have...
2008-12-02
579 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