Database Cattle
Steve Jones says you should treat your database servers like cattle. It makes life easier.
2017-03-09
342 reads
Steve Jones says you should treat your database servers like cattle. It makes life easier.
2017-03-09
342 reads
Today Steve Jones talks about the checklist you would want if you needed to move a SQL Server instance to new hardware.
2017-03-08
12,303 reads
2017-03-07
83 reads
Containers are valuable in many software domains. Are there places we, as data professionals, would like to use software containment?
2017-03-06
86 reads
If a successful IT career is just as much about tenacity, interest and retention as it is about brainpower, then how does one go about continuous learning?
2017-03-06
95 reads
Today Steve Jones asks what default values you might choose for new columns in a table.
2017-03-03
121 reads
Read why Solomon Rutzky is excited about SQL Server running on Linux.
2017-03-02
560 reads
How do you detect issues in your systems? Testing? Monitoring? Steve Jones has a few thoughts that we should find ways to do so before our customers.
2017-03-01
118 reads
2017-02-28
225 reads
This week Steve looks at the challenges of security for medical data.
2017-02-27
85 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