The Degradation of the Turing Test
Are computers getting smart enough to pass the Turing test or are humans getting worse at representing themselves as intelligent?
2020-10-15
270 reads
Are computers getting smart enough to pass the Turing test or are humans getting worse at representing themselves as intelligent?
2020-10-15
270 reads
Do meetings and paperwork take a toll on administrators? Steve draws a comparison to some of the changes in the US healthcare system.
2020-10-14
110 reads
2020-10-13
160 reads
Is going to a conference valuable for you? Your employer? Today Steve asks you to think about what might be important.
2020-10-12
94 reads
2020-10-10
145 reads
DevOps is about being effective and getting work out to customers. Today Steve notes that the lunch factor might help you reexamine your software development process.
2020-10-09
307 reads
A number of companies worked together to ensure that they could meet the challenge of the NHS. Sharing data was critical to this effort.
2020-10-08
124 reads
Data is important for AI projects, but the ethics and privacy implications are complex. A new project from Microsoft aims to help users control their data and make it available for use.
2020-10-07
132 reads
DevOps continues to improve the way we build software and Steve has a good example in today's editorial.
2020-10-06
70 reads
A recent issue with malware and SQL Servers has Steve wondering if you would detect a new, and unapproved, login added to an instance.
2020-10-05
218 reads
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
Hello team Can anyone share popular azure SQL DBA certification exam code? and your...
Comments posted to this topic are about the item Faster Data Engineering with Python...
Comments posted to this topic are about the item Which Result II
I have this code in SQL Server 2022:
CREATE SCHEMA etl;
GO
CREATE TABLE etl.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT etl.product
VALUES
(2, 'Bee AI Wearable');
GO
CREATE TABLE dbo.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT dbo.product
VALUES
(1, 'Spiral College-ruled Notebook');
GO
CREATE OR ALTER PROCEDURE etl.GettheProduct
AS
BEGIN
exec('SELECT ProductName FROM product;')
END;
GO
When I execute this code as a user whose default schema is dbo and has rights to the tables and proc, what is returned? See possible answers