Hekaton Part 11 :- Finding row count in memory table
Finding a row count in a "in memory" Hekaton table can be a tricky task as the regular commands and...
2015-11-06
937 reads
Finding a row count in a "in memory" Hekaton table can be a tricky task as the regular commands and...
2015-11-06
937 reads
Blocked processes are often a big problem for DBAs, because they’re difficult to monitor. We receive desperate calls saying “Everything...
2015-11-06 (first published: 2015-10-30)
7,054 reads
Hi all
i have posted quite a few blogs till now, all of them were individual post except a short series...
2015-11-06
364 reads
I have made a few ui changes to this to make it a little more usable, I can't really think...
2015-11-06
563 reads
I have made a few ui changes to this to make it a little more usable, I can't really think of any new features so if anyone has any...
2015-11-06
1 reads
I have made a few ui changes to this to make it a little more usable, I can’t really think...
2015-11-06
20 reads
I have made a few ui changes to this to make it a little more usable, I can’t really think...
2015-11-06
26 reads
Baton Rouge is home to one of the inaugural Power BI User Groups, starting up soon! I'll be serving as its...
2015-11-05
470 reads
Imagine that you want (for some reason) prohibit usage of some statement (or statements), eg - CURSOR
How can you find if...
2015-11-05 (first published: 2015-10-30)
1,839 reads
I started using a product called SQL Diagnostic Manager from Idera about 10 years ago at a Home Health company....
2015-11-05
501 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.
By Kanha Booking Wildlife Adventure India
Opting for the perfect Kanha National Park tour package is a necessity for a...
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