Dir2Dac and github2dacpac - create dacpacs from script folders or the internet
I like writing go (golang not the batch separator) and one of the things that I like is that if...
2015-10-16
19 reads
I like writing go (golang not the batch separator) and one of the things that I like is that if...
2015-10-16
19 reads
I like writing go (golang not the batch separator) and one of the things that I like is that if...
2015-10-16
49 reads
I like writing go (golang not the batch separator) and one of the things that I like is that if...
2015-10-16
51 reads
I like writing go (golang not the batch separator) and one of the things that I like is that if you want to use something from github you literally...
2015-10-16
6 reads
Microsoft are releasing regular CTP updates for SQL Server 2016. In the very recent release (CTP 2.4), there is a...
2015-10-20 (first published: 2015-10-16)
3,556 reads
In a previous blog I talked about copying on-prem data to Azure Blob Storage (Getting data into Azure Blob Storage). ...
2015-10-15
855 reads
Its just a bit over a week until PASS Summit 2015 will start. If you are a Microsoft Data Platform...
2015-10-15
400 reads
In this article, I am going to address some better practices for Reading Event_file targets attached to an XEvent Session.
Related Posts:
How to: File Target use in Extended Events December...
2015-10-15
10 reads
I have demonstrated over the past couple of articles the basics involved with reading the
event_file target along with a more...
2015-10-15
638 reads
If you’ve worked with SSMS for any length of time this will look awfully familiar:
SSMS 2008R2
SSMS 2012 +
This little green...
2015-10-15
522 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...
ALAMAT : Jl. Raya Tumpang No.1, Ledoksari, Tumpang, Kec. Tumpang, Kabupaten Malang, Jawa Timur...
ALAMAT : Jl. Jend. Yani Jl.Pahlawan No.99, Ardirejo, Kepanjen, Kec. Kepanjen, Kabupaten Malang, Jawa...
Comments posted to this topic are about the item Adding new column with DEFAULT
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