2017-01-18
185 reads
2017-01-18
185 reads
Many of our security issues come down to not patching software when there are updates available.
2017-01-17
114 reads
This week Steve Jones looks at hardware and the ways in which you might assemble a set of computers for building software.
2017-01-16
56 reads
Making simple mistakes in queries can have far reaching consequences.
2017-01-16
168 reads
This week Steve Jones looks at moving the port numbers of your instances for a bit of security.
2022-11-25 (first published: 2017-01-13)
203 reads
We need better security for our data, especially for our choices in managing data.
2017-01-12
84 reads
2017-01-11
169 reads
Today, Steve Jones looks at the popularity of SQL Server, which was named DBMS of 2017.
2017-01-10
139 reads
SQLServerCentral is getting an upgrade, and Steve Jones has a few words.
2017-01-09
139 reads
It is foolish to insist on reading only up-to-date books on technology. Nothing beats getting the broad perspective.
2017-01-09
81 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