Data Privacy Grows in California
Changes in data privacy law in California are demanded by consumers.
2021-01-23
70 reads
Changes in data privacy law in California are demanded by consumers.
2021-01-23
70 reads
Steve has a thought on the best way to protect sensitive data.
2021-01-07
139 reads
2020-12-14
137 reads
As legal requirements grow and change, cloud computing might require a new consideration: where we physically store data.
2020-12-10
158 reads
Lots of contact tracing apps are out there. Do you know which ones collect which types of data and what they do with it?
2020-11-24
160 reads
2020-11-17
109 reads
SQL Server shares some data with Microsoft, but the use is documented. Steve sees this as a model for how companies might share information.
2020-10-26
249 reads
Data is important for AI projects, but the ethics and privacy implications are complex. A new project from Microsoft aims to help users control their data and make it available for use.
2020-10-07
132 reads
Today Steve gives a reason why your organization might consider improving its data governance.
2020-09-16
74 reads
2020-08-15
69 reads
By Ed Elliott
Running tSQLt unit tests is great from Visual Studio but my development workflow...
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.
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
exec etl.GettheProduct
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