2017-05-29
37 reads
2017-05-29
37 reads
Phil Factor argues that the database should be the primary source not only of the current data values, but also of the volatility of the data, its rate of change. Surely, then, it makes sense for the database to control the caching strategy.
2017-05-29
100 reads
The SQL Server platform is growing, but Steve Jones notes that this might not really affect our jobs.
2017-05-26
850 reads
We will start to deal with more and more types of data. Steve Jones worries about the possibility of hacking.
2017-05-25
67 reads
2017-05-24
146 reads
Today Steve Jones looks at how you might track the various items you use in the cloud.
2017-05-23
219 reads
Microsoft has changed SQL Server in response to the community. Read about some of the enhancements.
2017-05-22
79 reads
2017-05-22
57 reads
Pseudonymisation is a form of data masking, a technique that becomes more important to data professionals all the time.
2017-05-19
1,925 reads
There may be new changes to our jobs as data professionals because of GDPR in the European Union.
2017-05-18
141 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