Idera ACE 2016
If you have been around the SQL Community long enough, you probably have heard of a software company called Idera....
2015-10-28
698 reads
If you have been around the SQL Community long enough, you probably have heard of a software company called Idera....
2015-10-28
698 reads
Yes, it’s this time of the year again, and I’m very excited about it. Once a year, PASS holds the...
2015-10-28
447 reads
Security as been invested more in SQL Server 2016 than any other.
Protecting your data at rest and in motion with...
2015-10-28
325 reads
Security as been invested more in SQL Server 2016 than any other.
Protecting your data at rest and in motion with...
2015-10-28
426 reads
Joseph Sirosh, Corporate VP of Data Group Microsoft talks about zigabytes….what!!!!!! Predominately in the cloud is where data will be moving;...
2015-10-28
358 reads
Joseph Sirosh, Corporate VP of Data Group Microsoft talks about zigabytes….what!!!!!! Predominately in the cloud is where data will be moving;...
2015-10-28
533 reads
PASS Summit Key note is off the ground and running…..
President Thomas LaRock talks about the 16th annual meeting that is...
2015-10-28
332 reads
PASS Summit Key note is off the ground and running…..
President Thomas LaRock talks about the 16th annual meeting that is...
2015-10-28
462 reads
Today, I’ll be live blogging the SQL PASS 2015 keynote. Today is the third day of the PASS Summit, and...
2015-10-28
743 reads
This year I was fortunate enough to get the invite to join the live bloggers table for both keynotes going...
2015-10-28
318 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