Looking Forward to the New Year - Professional Goals
Most folks make New Year's resolutions of things they want to do over the course of the next 364/365 days....
2013-01-01
1,315 reads
Most folks make New Year's resolutions of things they want to do over the course of the next 364/365 days....
2013-01-01
1,315 reads
What a wild year this has been. There have been ups and downs, but the ups have been incredible. To...
2013-01-01
933 reads
I received notification that I have received the Microsoft MVP award for 2013, my fourth consecutive year to receive this...
2013-01-01
509 reads
I received notification that I have received the Microsoft MVP award for 2013, my fourth consecutive year to receive this...
2013-01-01
653 reads
Paul Grevink has released a great study guide for the VMware VCAP5-DCA exam. It’s available here! I’ll be using it...
2013-01-01
724 reads
The WordPress.com stats helper monkeys prepared a 2012 annual report for this blog.
Here’s an excerpt:
About 55,000 tourists visit Liechtenstein every...
2012-12-31
1,489 reads
Year 2012 was super special for me in many ways. Made lot of new friends, Attended SQLPASS Summit 2012 and had...
2012-12-31
1,343 reads
I hadn’t used full-text indexing in production throughout my career. We hadn’t had the need in the applications I worked...
2012-12-31 (first published: 2012-12-19)
3,937 reads
It is Monday today but its no ordinary Monday. Today is New Years Eve, its the end of December and...
2012-12-31
1,801 reads
Fragmentation:- Fragmentation can be defined as condition where data is stored in a non continuous manner. In can be defined into...
2012-12-31
1,450 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