AI Is Great and Tech is Failing
Steve is a little disappointed in technology that didn't work well after a security incident.
2024-09-25
181 reads
Steve is a little disappointed in technology that didn't work well after a security incident.
2024-09-25
181 reads
Governments want backdoors built into encryption software, which Steve thinks is a bad idea.
2024-09-23
116 reads
2024-09-21
137 reads
Stored procedures can be poorly written, but Steve prefers them over embedded code.
2024-09-20
418 reads
Steve has a few thoughts on the tradeoff between getting work done quickly and producing well performing code.
2024-09-18
123 reads
2024-09-16
87 reads
2024-09-14
90 reads
Today Steve wonders if you have simple solutions you like or complex ones you don't.
2024-09-13
161 reads
Casino Night from SQL Server Central is coming back to the PASS Data Community Summit.
2024-09-11
408 reads
Steve sees disk drives as shrinking to the point of being invisible to most of us.
2024-09-09
309 reads
By Ed Elliott
Running tSQLt unit tests is great from Visual Studio but my development workflow...
By James Serra
I remember a meeting where a client’s CEO leaned in and asked me, “So,...
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
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
exec etl.GettheProduct
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