The Query Store
This week Steve Jones talks about the query store after an article was released describing it.
2015-02-23
210 reads
This week Steve Jones talks about the query store after an article was released describing it.
2015-02-23
210 reads
Steve Jones talks about careers, and where you might take your career over time.
2019-05-14 (first published: 2015-02-20)
722 reads
In many occupations, workers invest in their own tools. However we rarely do that in technology.
2015-02-19
261 reads
2015-02-18
588 reads
We still have problems with SQL Injection. Steve Jones has a few thoughts on why.
2015-02-17
310 reads
2015-02-16
77 reads
2018-06-25 (first published: 2015-02-13)
191 reads
Steve Jones talks about starting a new job and the need to get up to speed quickly, perhaps by being prepared on day 1.
2015-02-12
224 reads
How can we ship safe, and ship often? Steve Jones has a few comments on the need for better engineering.
2015-02-11
86 reads
Chris Testa-O'Neil on the origins of SQL Bits and the joys of community events.
2015-02-10
149 reads
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 John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
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