Review: Professional SQL Server 2000 XML
Professional SQL Server 2000 XML - Find out if this book from Wrox is as interesting as it sounds.
2001-09-12
3,711 reads
Professional SQL Server 2000 XML - Find out if this book from Wrox is as interesting as it sounds.
2001-09-12
3,711 reads
This is a great administrative reference for anyone using SQL Server 2000.
2001-08-08
3,284 reads
Steve Jones reviews Robert Viera's Professional SQL Server Programming text.
2001-08-01
3,514 reads
Is this a book you should read? Spend a few minutes reading the review to find out!
2001-07-23
4,567 reads
Steve Jones's review of a great guide for tuning the Windows 2000 OS.
2001-07-18
3,539 reads
This book discusses some of the issues that exist today in software. A good read for anyone developing software.
2001-07-11
2,945 reads
Steve Jones's review of this classic and reference. A must-have for every SQL Server DBA.
2001-07-04
5,408 reads
2001-06-25
7,063 reads
2001-06-20
3,645 reads
2001-06-13
3,516 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