SQL Server: Part 4 : Approaching Database Server Performance Issue
In the last three parts, we have discussed about different queries that can be used to list the current state...
2012-09-26
1,742 reads
In the last three parts, we have discussed about different queries that can be used to list the current state...
2012-09-26
1,742 reads
In the last post, we have discussed the script to list the sessions which are waiting for resource or currently...
2012-09-24
1,157 reads
In the Part 1, we have seen how quickly we can check the runnable task and I/O pending task on...
2012-09-28 (first published: 2012-09-21)
3,781 reads
When you work as DBA, many people will approach you with a complaint like "Application is taking ages to load...
2012-09-18
1,398 reads
Till now, we do not have any third party tool to monitor the SQL server, but we have implemented many custom...
2012-09-17
4,960 reads
It is common scenario that, we might need to extract the data from the SQL server based on some pattern....
2012-09-13
11,684 reads
We know that SQL server stores the data in 8 KB pages. An extent is made up of 8 physically contiguous...
2012-09-12
26,624 reads
Over clause can be used in association with aggregate function and ranking function. The over clause determine the partitioning and...
2012-09-17 (first published: 2012-09-10)
10,444 reads
Couple of days back, one of my colleague came to me asking for help. He is inserting multiple record from a...
2012-09-09
1,493 reads
In our last post, we have gone through the data page structure and we have noticed that there is an...
2012-08-22
7,242 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.
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
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