Deployment Contributor Logger
Niche tool of the day If you know what a deployment contributor is and have wanted to see what steps...
2015-09-30
213 reads
Niche tool of the day If you know what a deployment contributor is and have wanted to see what steps...
2015-09-30
213 reads
Niche tool of the day If you know what a deployment contributor is and have wanted to see what steps...
2015-09-30
205 reads
I wrote a test earlier and forgot one of the two cardinal rules about tSQLt so I was running my...
2015-09-24 (first published: 2015-09-10)
1,219 reads
To help with this scenario (it is pretty specific):
You have a table that has columns that you do not know about when you create the dacpac, possibly you have...
2015-09-23
3 reads
To help with this scenario (it is pretty specific):
You have a table that has columns that you do not know...
2015-09-23
869 reads
To help with this scenario (it is pretty specific):
You have a table that has columns that you do not know...
2015-09-23
68 reads
To help with this scenario (it is pretty specific):
You have a table that has columns that you do not know...
2015-09-23
47 reads
In my deployment filter I have been asked a couple of times to allow columns that exist on a table that do not exist in a dacpac to be...
2015-09-23
2 reads
In my deployment filter I have been asked a couple of times to allow columns that exist on a table...
2015-09-23
996 reads
In my deployment filter I have been asked a couple of times to allow columns that exist on a table...
2015-09-23
36 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