The Future for Database Administrators
Today Steve Jones talks about the job changes and prospects for those that manage IT systems.
2016-08-24
214 reads
Today Steve Jones talks about the job changes and prospects for those that manage IT systems.
2016-08-24
214 reads
2016-08-24
1,303 reads
A couple years I was looking for a new laptop bag. I settled on the Everki Versa, which I’ve been...
2016-08-23
1,182 reads
No matter what we do to secure our databases, we need to be sure our applications are well written, both with secure coding, but also good information handling.
2016-08-23
123 reads
2016-08-23
1,402 reads
Many of us would like to be sure we could rollback changes made during a deployment if they caused issues. Steve Jones notes that it might not be worth actually building those scripts in advance.
2016-08-22
507 reads
2016-08-22
101 reads
One of the things I ran into a few years ago was the idea of a software pipeline. A set...
2016-08-19 (first published: 2016-08-10)
2,818 reads
A smoke test can be a good way to ensure complex systems are working as expected after maintenance or changes.
2016-08-19
965 reads
2016-08-19
1,206 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