Have You Contributed to “Argenis Without Borders”?
So, I’m a little behind the ball on all of this. And others have already blogged about it:
Donate to Doctors...
2014-10-28 (first published: 2014-10-21)
5,477 reads
So, I’m a little behind the ball on all of this. And others have already blogged about it:
Donate to Doctors...
2014-10-28 (first published: 2014-10-21)
5,477 reads
I am consolidating my professional email accounts into one place. If you’ve previously contacted me using my linchpinpeople.com or either...
2014-10-21
541 reads
There has been a gigantic shift in attitudes between development and operations, the devops movement, to create a streamlined, automated...
2014-10-20
44 reads
There has been a gigantic shift in attitudes between development and operations, the devops movement, to create a streamlined, automated...
2014-10-20
53 reads
There has been a gigantic shift in attitudes between development and operations, the devops movement, to create a streamlined, automated and high performing team of developers and infrastructure techs...
2014-10-20
9 reads
I have moved my blog over to here, expect exciting posts about the things that interest me my previous blog...
2014-10-20
44 reads
I have moved my blog over to here, expect exciting posts about the things that interest me my previous blog...
2014-10-20
57 reads
I have moved my blog over to here, expect exciting posts about the things that interest me my previous blog was at: http://sqlserverfunctions.wordpress.com.
I hope you find something you enjoy...
2014-10-20
13 reads
Database Mirroring works on transaction logs. It applies transaction logs from Principle to Mirror. But Operation like addition of file is no log operation because of that file not...
2014-10-20
20 reads
2014-10-20
7 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