Wasting Time
Things at work that waste your time are impediments to actually getting work done. Management ought to be in the business of removing as many of these things as possible.
2016-10-27 (first published: 2012-10-11)
425 reads
Things at work that waste your time are impediments to actually getting work done. Management ought to be in the business of removing as many of these things as possible.
2016-10-27 (first published: 2012-10-11)
425 reads
2016-10-27
1,007 reads
Tuesday was the first real day of the Summit for me, and a long, all day event. First, a lovely...
2016-10-26
472 reads
One of the promotions this week at the PASS Summit from Redgate Software is a chance to run a year’s...
2016-10-26
413 reads
2016-10-26
1,029 reads
I had the chance to watch dbatools in action recently at SQL Saturday Cambridge. I watched a presentation from Chrissy...
2016-10-25
1,253 reads
On Thursday night, Oct 27, 2016, Andy Warren and I are hosting a game night event at the Washington State...
2016-10-25 (first published: 2016-10-17)
1,086 reads
2016-10-25
1,229 reads
If you are attending the PASS Summit, or even in the Seattle area, we have a SQL Server pro networking...
2016-10-24
487 reads
I learned something new recently about SQL Prompt. I was working on documenting and experimenting with snippets and found a...
2016-10-24
1,386 reads
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...
Yesterday I gave a talk for MSSQLTips called “Building a DBA Agent for Your...
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