Joe

With over 25 years of data experience, I've been through the ringer, solving some of the weirdest problems you can imagine. I've done Performance Tuning, Disaster Recovery, High Availability, Replication, RCA and general troubleshooting in industries from health care, finance, software, manufacturing, logistics, and more -- both on-premises and in AWS and Azure Cloud platforms. I've got a passion for helping others and was a PASS Chapter Leader and Regional Mentor for several years. Always looking for new challenges, I started consulting in 2015 and became an independent consultant in 2022.
  • Interests: Disc Golf, Car Detailing, Fixing random broken things, solving weird problems, giving unsolicited advice
  • Skills: SQL Server - HADR, Tuning, Replication, Cloud migration; AWS - SQL Right-sizing, migrations, performance improvement

It seems we can’t find what you’re looking for. Perhaps searching can help.

Blogs

Runing tSQLt Tests with Claude

By

Running tSQLt unit tests is great from Visual Studio but my development workflow...

Getting Your Data GenAI-Ready: The Next Stage of Data Maturity

By

I remember a meeting where a client’s CEO leaned in and asked me, “So,...

Learn Better: Pause to Review More

By

If you want to learn better, pause more in your learning to intentionally review.

Read the latest Blogs

Forums

Azure SQL DBA certification

By ashrukpm

Hello team Can anyone share popular azure SQL DBA certification exam code? and your...

Faster Data Engineering with Python Notebooks: The Fabric Modern Data Platform

By John Miner

Comments posted to this topic are about the item Faster Data Engineering with Python...

Which Result II

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Which Result II

Visit the forum

Question of the Day

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