2016-08-23 (first published: 2015-05-01)
1,461 reads
2016-08-23 (first published: 2015-05-01)
1,461 reads
2013-04-17 (first published: 2013-04-03)
1,458 reads
2013-03-19 (first published: 2013-03-01)
1,050 reads
Script to generate script to detach or attach user databases
2013-02-15 (first published: 2013-01-29)
5,790 reads
Script to reorganize all indexes on all tables in user databases
2013-02-14 (first published: 2013-01-31)
3,257 reads
2013-02-06 (first published: 2012-12-27)
1,844 reads
Changes the database compatibility level of all databases to the given level.
2013-01-31 (first published: 2013-01-07)
928 reads
2012-12-03 (first published: 2012-11-07)
2,021 reads
2012-10-04 (first published: 2012-04-10)
2,018 reads
2012-07-25 (first published: 2012-07-12)
2,513 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