SQL Saturday 49 Delivery Mechanisms - Presentation Slide Deck and Files
This past weekend, my wife and I travelled down to Orlando for SQL Saturday 49. I wasn't planning on presenting,...
2010-10-20
410 reads
This past weekend, my wife and I travelled down to Orlando for SQL Saturday 49. I wasn't planning on presenting,...
2010-10-20
410 reads
I posted a blog recently about returning a listing of all indexes for database, which is good if you want...
2010-10-16
1,151 reads
While doing some performance testing recently and utilizing some of the DMV’s I figured, I better find out when the...
2010-10-16
1,547 reads
I typically don’t blog about other people blogs, because quite frankly I don’t like giving summations of the work someone...
2010-10-14
645 reads
A while ago, I showed you how to find out what indexes were on a table using the GUI. Today,...
2010-10-14
34,596 reads
A while ago, I posted a blog on how one could perform running totals using Reporting Services and a user...
2010-10-11
4,393 reads
Presenting is a huge fear for many and it is no different for me. I have been presenting at SQL...
2010-10-10
589 reads
Recently, I came across a forum post from a user trying to determine if a directory existed in the file...
2010-10-06
14,289 reads
Here is another one of those strange but true things that I come across every so often which I thought...
2010-10-06
3,573 reads
While working on a project recently, I came across a conversion that was trying to convert a date to an...
2010-10-05
798 reads
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...
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
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