2015-08-03
243 reads
2015-08-03
243 reads
It can be a challenge to keep up with the rapidly evolving SQL Server platform. Andy Warren has a few ideas today.
2015-07-31
374 reads
An invitation to hack United's IT systems has resulted in vulnerabilities being found and hackers rewarded for disclosing the issues.
2015-07-30
98 reads
Steve Jones discusses the decision to hire someone that fits in with your culture at work, and what that means.
2015-07-29
143 reads
An amazing visualization of basketball players has Steve Jones encouraging you to find your own pet project and showcase some skills.
2015-07-28
135 reads
The challenges of getting enough resources for our projects aren't always apparent.
2015-07-27
138 reads
Can you deploy your database changes without any downtime? Steve Jones has a few notes.
2015-07-27
121 reads
The poll this week looks to the future and artificial intelligence. Steve Jones wonders if we'll ever really see this.
2015-07-24
147 reads
The job of the DBA is constantly evolving, but one thing has always been critical: access to data.
2015-07-23
245 reads
We must learn to deal with the reality of our situation, along with the limitations.
2015-07-21
121 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