SQLBits XI Dates Announced
SQLBits XI has been announced for the 2-4th of May 2013. Having taken place in London this year, it is moving back North to the Midlands at the East...
2012-12-31
8 reads
SQLBits XI has been announced for the 2-4th of May 2013. Having taken place in London this year, it is moving back North to the Midlands at the East...
2012-12-31
8 reads
I just discovered a few posts calling out a bug in the vSphere 5.1 vCenter performance statistic rollup procedure for...
2012-12-31
1,504 reads
HappyNewYear2013
May this new year bring lots of Happiness in all of your life. Let welcome 2013 together with lots of...
2012-12-31
1,296 reads
Looking back at 2012 I feel like I’ve written less than I planned to, and in some ways done less...
2012-12-31
1,466 reads
Last year, I did a wrap up post of the year to see where I landed from where I wanted...
2012-12-31
1,633 reads
Hello folks, welcome to a post focusing on one of the future features of SQL Server. SQL Server 2012 is barely a year old, yet there is already talk...
2012-12-30
21 reads
As you might be aware, SQL Server 2012 Standard Edition has some hardware-related licensing limits that I think should be...
2012-12-29
7,554 reads
One of my previous posts, I covered how to create a really big database with just garbage data in it....
2012-12-29
1,153 reads
SQL Server MVP Jeremiah Peschka posted 2 articles about Hadoop, which makes me be interested on the nosql skill.
I don't have much knowledge...
2012-12-29
2,849 reads
This is a guest post by David Postlethwaite.
I’ve been wondering how to do this for years. At SQL Bits and...
2012-12-28
1,053 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