Application Developers don’t own their data
As a data guy, I always smile when application developers refer to ‘their’ data. If only it were that simple.
2014-06-30
364 reads
As a data guy, I always smile when application developers refer to ‘their’ data. If only it were that simple.
2014-06-30
364 reads
How did you fall in into your particular career? Was it because of a product? Andy Warren talks about his career evolution and how often we become trapped by the products we work with.
2014-06-30
146 reads
Do we take security too far? Are we creating unnecessary rules for those that need to use the resources we support? Steve Jones talks today about security and how we might want to approach it when handling rights for developers.
2014-06-27 (first published: 2009-09-21)
234 reads
2014-06-25
663 reads
2014-06-24
381 reads
Meetings are a part of modern corporate work that many of us despise. However is that because
2014-06-23
221 reads
Providing support for your manager or boss in getting his or her job is a good thing. Steve Jones comments on what benefits you might get and why this could enhance your career.
2014-06-20 (first published: 2009-10-05)
279 reads
2014-06-17
223 reads
As an employee, are you willing to pitch in for things that aren't a normal part of your job? Today we have Andy Warren notes that he has kitchen duty at work.
2014-06-16
209 reads
A new series about kicking bad habits reminds Steve Jones that there are good and bad sides to having set practices. Even the best habits you have in technology will likely need to evolve over time.
2014-06-13 (first published: 2009-10-12)
180 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