Compressing Encrypted Backups
A common requirement, whether it be based out of pure want or truly out of necessity, is to make a...
2015-08-11
3,343 reads
A common requirement, whether it be based out of pure want or truly out of necessity, is to make a...
2015-08-11
3,343 reads
Blank values are annoying, anywhere and everywhere. If your source system contains them, here’s how to convert blank values to NULL in...
2015-08-11
15,689 reads
Our subject for this month’s T-SQL Tuesday blog party (#69) is Encryption, hosted by a guy with an awesome first...
2015-08-11
818 reads
Most database professional recognize they have a good career path, and mostly enjoy the work they do. It’s possible to cross the...
2015-08-11
4,662 reads
We have another great 1-DAY training workshop coming to New York City at MS NYC HQ 11 Times Square on...
2015-08-20 (first published: 2015-08-11)
1,566 reads
What is really mean by DBCC and what do people mean when they say DBCC?
Related Posts:
Database Corruption and IO Errors January 18, 2018
Common Tempdb Trace Flags - Back...
2015-08-11
54 reads
If I ask you what is DBCC, what would your answer be?
I want you to think about that one for...
2015-08-11
10,827 reads
the problem of monster views
I’ve been working with tuning an application that performs a lot of Entity framework calls,...
2015-08-10
1,337 reads
Does generating an Estimated Plan cause that plan to be loaded into the plan cache?
No.
What? Still here? You want more?...
2015-08-18 (first published: 2015-08-10)
1,785 reads
Note: This is a repost of an older blog by Sean that’s still applicable. We’ve updated it with a note...
2015-08-10
756 reads
By ReviewMyDB
My T-SQL Tuesday #202 entry for Marlon Ribunal's invitation on memorable SQL Server outages....
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...
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