HP Announcement: PDW V2 Appliance Features
HP Announcement: PDW V2 Appliance Features
New features for the HP’s Enterprise Data Warehouse (EDW) V2 appliance for SQL Server...
2012-11-16
2,207 reads
HP Announcement: PDW V2 Appliance Features
New features for the HP’s Enterprise Data Warehouse (EDW) V2 appliance for SQL Server...
2012-11-16
2,207 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-16
1,197 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-16
744 reads
Some folks decry the concept of being in a 'Hole'. For them, there is no such thing as 'Technical Debt', no such thing as maintaining weak and wobbly legacy...
2012-11-16
9 reads
Some folks decry the concept of being in a 'Hole'. For them, there is no such thing as 'Technical Debt',...
2012-11-16
849 reads
Some folks decry the concept of being in a 'Hole'. For them, there is no such thing as 'Technical Debt', no such thing as maintaining weak and wobbly legacy...
2012-11-16
12 reads
I will be speaking at SQL Saturday #173 in Washington DC at the Microsoft MTC in Chevy Chase, MD, to speak on...
2012-11-16
818 reads
Here is the November 2012 version of my SQL Server 2012 Diagnostic Information Queries, with some minor tweaks and improvements...
2012-11-16
951 reads
The Connect to SQL Server Management Studio presents a new Additional Connection Parameters Page. Use the Additional Connection Parameters page...
2012-11-16
17,252 reads
I delivered my Encryption Primer talk this past Tuesday at the Boulder SQL Server Users Group and last night at...
2012-11-16
1,085 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