Turn Out the Lights
Today we have a guest editorial from Andy Warren that looks at the costs associated with our behavior.
2019-09-06 (first published: 2016-01-18)
412 reads
Today we have a guest editorial from Andy Warren that looks at the costs associated with our behavior.
2019-09-06 (first published: 2016-01-18)
412 reads
Security is always a hot topic, and Steve Jones notes that we should be specific when we work with security.
2016-01-15
134 reads
Today Steve Jones looks at the use of tracking sensors to gather spatial data on professional athletes for later analysis.
2016-01-14
92 reads
There are lots of costs to building your own software, which Steve Jones notes might not be what you want to spend over time.
2019-09-05 (first published: 2016-01-13)
312 reads
2016-01-12
149 reads
2016-01-11
181 reads
2016-01-11
257 reads
2016-01-08
118 reads
2016-01-07
251 reads
People have hacked the voyage data recorders in ships. Steve Jones thinks this is a fundamental problem in computing systems.
2016-01-05
172 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