Why I Support PASS & Why I Criticize PASS
A friend recently asked me about my involvement with PASS, and that lead to the two questions in the title....
2014-09-17
775 reads
A friend recently asked me about my involvement with PASS, and that lead to the two questions in the title....
2014-09-17
775 reads
The 12th cumulative update release for SQL Server 2012 Service Pack 1 is now available for download at the Microsoft Support site. Cumulative Update 12 contains all the hotfixes...
2014-09-17
11 reads
The 2ndcumulative update release for SQL Server 2012 Service Pack 2 is now available for download at the Microsoft Support site. Cumulative Update 2 contains all the hotfixes released...
2014-09-17
15 reads
Welcome to Part 1 of my SQL Snack Pack on Performance Tuning! The series is dedicated to help beginners understand...
2014-09-17
1,132 reads
A while back I had written a post about why I’m excited about Hekaton (now called ‘In-Memory OLTP’ – not sure...
2014-09-22 (first published: 2014-09-17)
8,456 reads
This year, I submitted my application to run for the PASS Board and it was accepted. This then is my...
2014-09-22 (first published: 2014-09-17)
6,196 reads
For the love of all that’s SQL, triggers are not toys! I’m not even talking about logon triggers or DDL...
2014-09-17
1,441 reads
The 12th cumulative update release for SQL Server 2012 Service Pack 1 is now available for download at the Microsoft...
2014-09-17
536 reads
The 2ndcumulative update release for SQL Server 2012 Service Pack 2 is now available for download at the Microsoft Support...
2014-09-17
2,328 reads
Ashish Banga -MCP,MCTS, SharePoint would like to connect on LinkedIn. How would you like to respond?Ashish Banga -MCP,MCTS, SharePointSr.Engineer- SharePoint...
2014-09-17
769 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
How I used AI for this postChatGPT to generate images based on info specifically...
Bonjour à tous, La semaine dernière, nous avons effectué une mise à niveau de...
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...
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