Credentials and Proxies: Getting Started
If you’ve been a DBA for more than a day, you probably have a pretty good idea of what a...
2015-08-04
9,387 reads
If you’ve been a DBA for more than a day, you probably have a pretty good idea of what a...
2015-08-04
9,387 reads
As I mentioned in the blog post Speaking at SQL Server Days 2015, I’ll be giving a session at the...
2015-08-04
631 reads
This great book by Ricardo Semler is something that some of my friends have been recommending me to read for...
2015-08-04
423 reads
Newest update to the script to help discover and track object sizes within a database.
Related Posts:
Refresh SQL Modules November 9, 2018
Drop That Schema October 27, 2017
An Experiment...
2015-08-04
10 reads
As was recently promised, I have an update to an old tried and true script for calculating the size of...
2015-08-04
1,062 reads
SQL Server 2014 introduced a major feature called "In Memory - Hekaton" Tables, in which even the fundamental concepts of SQL...
2015-08-04
1,094 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
4,107 reads
I ran into a question recently about how to clear out a database of all objects. I assume someone was...
2015-08-03
1,256 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
739 reads
Hi friends, in our day to day work we used SELECT…INTO clause to create replica of a table for different...
2015-08-03
673 reads
How I used AI for this postChatGPT to generate images based on info specifically...
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...
Hello everyone, Last week we performed an upgrade of our SQL Server instance, moving...
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