2017-07-06
63 reads
2017-07-06
63 reads
A holiday in the US has Steve Jones thinking about compromise and communication.
2017-07-04
49 reads
2017-07-03
95 reads
This week Steve asks you to make sure you practice your restore skills periodically.
2017-07-03
44 reads
Steve Jones saw a database design test for developers, but he's never been given one.
2017-06-30
258 reads
This week Steve Jones wonders what you might do if you discovered data corruption.
2017-06-29
63 reads
2017-06-28
106 reads
The ability to protect, and perhaps handle, sensitive data separately from other data is becoming more important. Steve Jones discusses the process and asks if it's something you perform on a regular basis.
2017-06-27
66 reads
Phil Factor reflects on the occasional benefits of document loss, whether accidental or less so.
2017-06-26
67 reads
If you have ideas for how to improve replication, Steve Jones is asking for them.
2017-06-26
141 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