Objects dependency check up in SSMS
It’s a very good practice that you check the dependencies of the other objects when you change an object. Many...
2016-05-20
194 reads
It’s a very good practice that you check the dependencies of the other objects when you change an object. Many...
2016-05-20
194 reads
It’s a very good practice that you check the dependencies of the other objects when you change an object. Many developers just don’t do it, even when the change(s)...
2016-05-20
4 reads
It’s a very good practice that you check the dependencies of the other objects when you change an object. Many developers just don’t do it, even when the change(s)...
2016-05-20
3 reads
This is another situation that happened on a database migration at a client site. The database migration was done by using SSIS packages on quite a big database of 450 GB,...
2016-05-06
4 reads
This is another situation that happened on a database migration at a client site. The database migration was done by using SSIS...
2016-05-06
108 reads
This is another situation that happened on a database migration at a client site. The database migration was done by using SSIS packages on quite a big database of 450 GB,...
2016-05-06
3 reads
The code optimization is a mandatory task for the programmable objects in SQL Server. During the time some code can...
2016-05-05
223 reads
The code optimization is a mandatory task for the programmable objects in SQL Server. During time some code can start...
2016-05-05
82 reads
The code optimization is a mandatory task for the programmable objects in SQL Server. During time some code can start working “badly” i.e. become slow. In that case a...
2016-05-05
4 reads
The code optimization is a mandatory task for the programmable objects in SQL Server. During time some code can start working “badly” i.e. become slow. In that case a...
2016-05-05
5 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 SSC, Has anyone encountered this before??? I have an odd issue that I...
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...
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