Appreciating New Perspectives
Today Steve Jones talks about understanding and having empathy for other points of view.
2017-08-31
75 reads
Today Steve Jones talks about understanding and having empathy for other points of view.
2017-08-31
75 reads
Today Steve Jones has a few thoughts on the complexity and cumbersome nature of database development.
2017-08-30
103 reads
If mistakes are made, employees can be held financially responsible by some companies. Do we need to worry about this in our industry?
2023-06-21 (first published: 2017-08-29)
203 reads
Are graph databases worth using? Steve Jones looks at a report that questions their value at this time.
2017-08-28
92 reads
2017-08-28
129 reads
Steve Jones asks you to look forward in your career, perhaps setting goals that move you forward.
2017-08-25
101 reads
2017-08-24
85 reads
2017-08-23
73 reads
There are times when you look back and times when you look forward in your career. Sometimes, however, we might try to push forward too fast.
2017-08-22
63 reads
2017-08-21
78 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