The Black Boxes
The world of machine learning and artificial intelligence are growing. Steve Jones notes this means we need to decide if we can trust the black boxes.
2016-09-26
71 reads
The world of machine learning and artificial intelligence are growing. Steve Jones notes this means we need to decide if we can trust the black boxes.
2016-09-26
71 reads
This Friday Steve Jones looks to find out what things help people learn and build skills more readily.
2016-09-23
91 reads
2016-09-23
1,015 reads
A competition among software bots may foretell a vision of the future for software developers.
2016-09-22
97 reads
I wrote about Azure SQL Database for T-SQL Tuesday #82, but I had a few mistakes in my process, at...
2016-09-22
587 reads
This week Steve Jones notes that backups aren't the most important thing for your data. Restores are.
2016-09-19
112 reads
2016-09-16
1,132 reads
Data Science is a hot area and one to which quite a few people would like to move. Steve Jones has some thoughts on trying to get certified in this area.
2016-09-15
172 reads
I tend to try and get code on the screen quickly and then start to remove things. I’m a visual...
2016-09-15
618 reads
2016-09-15
1,248 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