Inside an SSDT Deployment Contributor
In my deployment filter I have been asked a couple of times to allow columns that exist on a table...
2015-09-23
38 reads
In my deployment filter I have been asked a couple of times to allow columns that exist on a table...
2015-09-23
38 reads
I am going to ignore the fact that people don't want to install visual studio on a build server, in the future there will likely be a way to...
2015-09-23
4 reads
I am going to ignore the fact that people don't want to install visual studio on a build server, in...
2015-09-23
528 reads
I am going to ignore the fact that people don’t want to install visual studio on a build server, in...
2015-09-23
44 reads
I am going to ignore the fact that people don’t want to install visual studio on a build server, in...
2015-09-23
40 reads
I installed the 2016 SSMS client recently and in one way or another any of my apps that I have written that use the DacFx ScriptDom have all broken...
2015-09-15
2 reads
I installed the 2016 SSMS client recently and in one way or another any of my apps that I have...
2015-09-15
759 reads
I installed the 2016 SSMS client recently and in one way or another any of my apps that I have...
2015-09-15
38 reads
I installed the 2016 SSMS client recently and in one way or another any of my apps that I have...
2015-09-15
43 reads
Read a call to get started using Version Control with your database code with a few ideas on how this can help you.
2015-09-15
6,202 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 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
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