DevOps at Microsoft
Microsoft has dramatically changed the way they develop software, in a very public way, as Steve Jones notes.
2016-09-27
111 reads
Microsoft has dramatically changed the way they develop software, in a very public way, as Steve Jones notes.
2016-09-27
111 reads
Why would I want the boss to be able to see so easily every little bad thing that happens on my servers? Grant Fritchey offers a few reasons...
2016-09-26
130 reads
The world of machine learning and artificial intelligence are growing. Steve Jones notes this means we need to decide if we can trust the black boxes.
2016-09-26
65 reads
This Friday Steve Jones looks to find out what things help people learn and build skills more readily.
2016-09-23
84 reads
A competition among software bots may foretell a vision of the future for software developers.
2016-09-22
92 reads
Is your company a tech company? Steve Jones looks at the world from the perspective of software development and how that impacts business.
2021-08-27 (first published: 2016-09-20)
139 reads
This week Steve Jones notes that backups aren't the most important thing for your data. Restores are.
2016-09-19
103 reads
Today Steve Jones discusses the mythical 10x programmer from the context of databases.
2020-09-24 (first published: 2016-09-19)
298 reads
2020-09-25 (first published: 2016-09-16)
1,533 reads
Data Science is a hot area and one to which quite a few people would like to move. Steve Jones has some thoughts on trying to get certified in this area.
2016-09-15
166 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