2018-10-15
74 reads
2018-10-15
74 reads
Steve notes that modeling and good database design can't be ignored in DevOps work.
2018-10-15
48 reads
In larger shops with multiple database servers, it is very important to have consistency.
2018-10-12
160 reads
2018-10-11
470 reads
Andy Warren talks about the single source of truth for information. It could be the database, but that's not always the best choice.
2018-10-09
246 reads
Steve has a troubleshooting experience that reminds him of a lesson he should have learned.
2018-10-08
74 reads
Performance is a common reason to monitor SQL Server. The work day of a database administrator is often interrupted with unexpected calls about slowness in applications or reports. But, how does the performance today compare to the performance last week or last month? Can the root cause of the issue be traced to the database […]
2018-10-08
43 reads
The idea of a single place to get the status of your environment is an interesting one.
2018-10-05
87 reads
2018-10-04
58 reads
2018-10-03
42 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