Data-driven Prototypes
Phil Factor on a tale of how dodgy mock data derailed an otherwise-convincing prototype.
2018-01-15
196 reads
Phil Factor on a tale of how dodgy mock data derailed an otherwise-convincing prototype.
2018-01-15
196 reads
2022-05-16 (first published: 2018-01-15)
286 reads
When you need to debug or troubleshoot, Steve Jones wants you to disable, not drop, objects.
2018-01-12
67 reads
Do you know how to answer normalization questions in an interview? Steve Jones gives you a few ideas and recommends you brush up on your knowledge.
2022-05-20 (first published: 2018-01-11)
645 reads
2018-01-10
241 reads
An analysis of salaries uses statistics to determine significance of the data. Is this data science?
2018-01-09
83 reads
The staff that build your systems are more important than your choice of technology.
2022-05-23 (first published: 2018-01-08)
244 reads
With bugs in our CPUs, everyone needs to plan on patching or upgrading.
2018-01-05
99 reads
Some companies don't want to use tools, but that doesn't make sense to Steve Jones.
2018-01-04
102 reads
2018-01-03
73 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