Freecon – Oct 27 in Seattle
It is well known that there is a wealth of information within Extended Events. One can tap plenty of information about performance issues, errors, or general interest type stuff...
2015-09-23
21 reads
It is well known that there is a wealth of information within Extended Events. One can tap plenty of information about performance issues, errors, or general interest type stuff...
2015-09-23
21 reads
Just over a week ago I announced that SQL Solutions Group was getting ready to host a day of training,...
2015-09-23
812 reads
In my deployment filter I have been asked a couple of times to allow columns that exist on a table...
2015-09-23
1,001 reads
In my deployment filter I have been asked a couple of times to allow columns that exist on a table...
2015-09-23
40 reads
In my deployment filter I have been asked a couple of times to allow columns that exist on a table...
2015-09-23
37 reads
To help with this scenario (it is pretty specific):
You have a table that has columns that you do not know about when you create the dacpac, possibly you have...
2015-09-23
5 reads
In my deployment filter I have been asked a couple of times to allow columns that exist on a table that do not exist in a dacpac to be...
2015-09-23
8 reads
Counter offers (and the related discussions) are an emotional topic. The comments on two of my editorials for SQLServerCentral (The...
2015-09-23
598 reads
Not quite fineprint, but sure feels like it!
Quotename can be a pretty cool function to simplify your dynamic sql, as...
2015-09-23
384 reads
TIMESTAMP vs. DATETIME: What’s the diff? The TIMESTAMP data type in SQL Server is not what you may think it...
2015-09-23
982 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