How Far Have You Traveled for a SQL Saturday?
This Friday Steve Jones talks SQL Saturdays and asks how far you've traveled to attend one.
2016-07-29
94 reads
This Friday Steve Jones talks SQL Saturdays and asks how far you've traveled to attend one.
2016-07-29
94 reads
Gathering too much data isn't always helpful, and doesn't necessarily help you make better decisions. However, that's up to you to decide how much is too much.
2016-07-28
75 reads
Today Steve Jones notes that the ability to search if invaluable as the amount of information, or even objects, we deal with grows.
2016-07-27
91 reads
Releasing software is stressful, and as Steve Jones notes today, can cause bankruptcy if you don't have a solid process.
2016-07-26
92 reads
2016-07-25
75 reads
Today Steve Jones wonders why we don't unit test more, especially for databases.
2016-07-25
122 reads
Today we have a guest editorial from Ben Kubicek as Steve is traveling out of town. I discovered I had stayed at a job about two years too long. Why was that?
2016-07-22
201 reads
The march to the cloud is ongoing and Steve Jones says you should prepare yourself. Even if your company doesn't move.
2016-07-20
100 reads
Today Steve Jones talks about the problem of having code that people are afraid to change or deploy.
2016-07-19
130 reads
Today Steve Jones notes that back doors could be inserted into chips, which would be a huge problem.
2016-07-18
92 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