Updating Certifications
Microsoft is retiring some certifications and offering others. Steve has a few thoughts on this.
2020-03-13
263 reads
Microsoft is retiring some certifications and offering others. Steve has a few thoughts on this.
2020-03-13
263 reads
Steve Jones highlights the importance he sees for data professionals in the containerization of software.
2020-03-11
293 reads
2020-03-10
336 reads
With progress thwarted by a committee of panjandrums, will T-SQL forever remain in the doldrums? So wonders Phil Factor.
2020-03-09 (first published: 2017-07-10)
465 reads
Today Steve asks what reasons a developer has for using stored procedures.
2020-03-06
539 reads
A security breach at Microsoft is disconcerting, especially when they don't share details.
2020-03-05
289 reads
2020-03-04
342 reads
Artificial Intelligence systems might dramatically change our world, but they need lots of help and work to get better.
2020-03-03
137 reads
For a time, it seemed that everyone wanted to build a Hadoop system. The world has changed, and that's not as popular an idea as it used to be. Today, Steve has a few thoughts.
2020-03-02
535 reads
Amazon is providing automatic redaction of PII data in there transcription service.
2020-02-29
278 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