2005-12-28
1,219 reads
2005-12-28
1,219 reads
2005-12-20
1,238 reads
Saw this at the book store this evening and picked it up.
SQL Server 2005 Administrator's Pocket Consultant
I'll spend the...
2005-12-18
1,493 reads
This is one of those "bang head here" issues. I was trying to install
Net::SSH::Perl, which basically drives SSH through Perl,...
2005-12-16
1,793 reads
In a community the size of SQL Server Central, it's natural for people
to come and go, especially with contributions to...
2005-12-15
1,323 reads
2005-12-14
1,357 reads
Had a need for this the other day. We just needed a quick dump of which
drives each database was using....
2005-12-09
1,369 reads
I saw this first on Karen Watterson's blog. Microsoft has released an update to SQL Server 2005's Books Online:
Download
A quick...
2005-12-07
1,460 reads
2005-12-07
1,271 reads
Slowly reworking my professional site at http://www.truthsolutions.com/
but as of right now it's more of a brochure site than anything else....
2005-11-30
1,286 reads
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.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
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
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