Controlling what appears in the status bar and query tabs (Day 32)
When you run a query in SSMS, you are probably aware that the status bar contains many pieces of information...
2018-02-01
531 reads
When you run a query in SSMS, you are probably aware that the status bar contains many pieces of information...
2018-02-01
531 reads
SSMS provides an Activity Monitor, a process that displays various information about what all is going on with the instance....
2018-01-31
788 reads
SSMS has a lot of reports available for you to use. Most of the reports in SSMS are off of...
2018-01-30
534 reads
If you are presenting with SSMS, then there are some extra steps that you need to take. These steps are...
2018-01-29
837 reads
Over the last several weeks, we have been making several changes to various settings in SSMS. Now that you have...
2018-01-28
391 reads
When you are performance tuning code, you will frequently examine the execution plans to see what is happening. As you...
2018-01-27
447 reads
Wayne’s Tips and Tricks for SSMS
SQL Server Management Studio (SSMS ) is a program that many just launch daily (or only...
2018-01-26
693 reads
We all know that we should liberally document our code with comments, so that others (and even yourself) will know...
2018-01-26
379 reads
One of the things that I do with my code is to include reference links to what I was doing...
2018-01-25
339 reads
One of the things that I do with my code is to include reference links to what I was doing...
2018-01-25
308 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