Enforcing T-SQL quality with SSDT Analysis Extensions
What? Simply put, it is possible to include checks in the SSDT (Sql Server Data Tools) build process - you come...
2014-12-30
209 reads
What? Simply put, it is possible to include checks in the SSDT (Sql Server Data Tools) build process - you come...
2014-12-30
209 reads
What? Simply put, it is possible to include checks in the SSDT (Sql Server Data Tools) build process - you come...
2014-12-30
216 reads
What? Simply put, it is possible to include checks in the SSDT (Sql Server Data Tools) build process - you come up with a set of rules or start...
2014-12-30
9 reads
I thought it would be a good idea to gather together a list of links for DacFx, blogs code or...
2014-12-07
88 reads
I thought it would be a good idea to gather together a list of links for DacFx, blogs code or...
2014-12-07
44 reads
I thought it would be a good idea to gather together a list of links for DacFx, blogs code or articles - if you have anything that you think...
2014-12-07
5 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the...
2014-12-07
50 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the...
2014-12-07
53 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the setup files.
The BITS service is used to download files...
2014-12-07
3 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
60 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.
Pench National Park is one of the best places to visit for the first...
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