The New Normal Annoyances
Steve talks a bit about the new challenges of working in a different environment and the challenges you might face.
2020-09-22
99 reads
Steve talks a bit about the new challenges of working in a different environment and the challenges you might face.
2020-09-22
99 reads
The database compatibility level ought to provide some protection from database upgrade changes, but do you believe that?
2020-09-21
329 reads
It is not existing knowledge but the skill of acquiring new knowledge rapidly that will help you overcome imposter syndrome.
2020-09-19
332 reads
Today we have a guest editorial from Andy Warren as Steve is on vacation. Would any job be enough for you to uproot your life?
2020-09-18 (first published: 2016-04-04)
251 reads
Today we have a guest editorial where Grant talks about being effective and practical in your world.
2020-09-17
166 reads
Today Steve gives a reason why your organization might consider improving its data governance.
2020-09-16
74 reads
2020-09-15
192 reads
2020-09-14
161 reads
This month's T-SQL Tuesday had lots of posts that look at automation from the DBA perspective, rather than the software developer.
2020-09-12
336 reads
Today Steve wonders if companies ought to support remote work better with other benefits.
2020-09-11
202 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