Secret Software Security
The move to limit disclosure of vulnerabilities continues, with potential issues for many of us.
2015-11-02
115 reads
The move to limit disclosure of vulnerabilities continues, with potential issues for many of us.
2015-11-02
115 reads
Interruptions are the enemy of productivity for creative people, like software developers. Steve Jones talks today about the need for quiet time.
2015-10-29 (first published: 2011-07-25)
535 reads
As DBAs we go to great lengths to ensure the security of our production data. But what happens when it moves off of a production server?
2015-10-28 (first published: 2008-03-07)
1,325 reads
The PASS Summit opens today with the first keynote. This is one of the few times that I’ve declined the...
2015-10-28
561 reads
The PASS Summit opens today with the first keynote. This is one of the few times that I’ve declined the...
2015-10-28
492 reads
Another quick tip for SQL Prompt, using the snippets to increase your productivity.
2015-10-28 (first published: 2012-05-01)
1,514 reads
2015-10-28
1,910 reads
Yesterday was the Seattle edition of the 2015 Redgate Software SQL in the City tour. I was in London a...
2015-10-27
538 reads
Yesterday was the Seattle edition of the 2015 Redgate Software SQL in the City tour. I was in London a...
2015-10-27
687 reads
IT is too slow. That was a quote that inspired this piece from Steve Jones that talks about the need for IT to be more flexible and agile in their efforts. That includes the data professional in their modeling.
2015-10-27 (first published: 2011-05-24)
269 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