More Than One Way to Skin a Cat
There are many ways to accomplish a task in SQL Server, and almost every technology. But too much choice might not be the best thing for beginners.
2012-11-08
208 reads
There are many ways to accomplish a task in SQL Server, and almost every technology. But too much choice might not be the best thing for beginners.
2012-11-08
208 reads
Data quality is everyone's business and it takes some work. Steve Jones talks about some hints for you and your manager to make things better in your data systems.
2012-11-07 (first published: 2007-11-27)
167 reads
There are over half a million database servers out on the Internet without protection. How can this happen?
2012-11-06 (first published: 2007-12-04)
478 reads
Will the 40 hour work week change anytime soon? A survey seems to think so, and Steve Jones (somewhat) agrees.
2012-11-05 (first published: 2007-12-03)
323 reads
2012-11-01
114 reads
Building a team when you are developing software of any size is important and Steve Jones shares one of the most important things you need.
2012-10-31 (first published: 2007-12-10)
178 reads
A few thoughts from Steve Jones on how you can help increase your own job security in IT.
2012-10-30 (first published: 2007-11-26)
374 reads
2012-10-29 (first published: 2007-11-20)
220 reads
Today Steve Jones talks about those great DBAs, the Exceptional ones that do more than just respond to issues or set up monitoring on their systems.
2012-10-25
164 reads
There's a hole in the SQL Server platform. No log reader comes with the product and Steve Jones thinks Microsoft should build one and include it.
2012-10-24
413 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