The Clustered Index is not the Primary Key
As the title says, the clustered index doesn't have to the primary key and vice versa.
2016-05-24
1,389 reads
As the title says, the clustered index doesn't have to the primary key and vice versa.
2016-05-24
1,389 reads
Dealing with SQL Server security when the application it uses is full of security holes.
2016-05-23
195 reads
There has never been more reasons or better opportunities to learn new skills. Gail Shaw shares her favorite online video training resources sites, what's on her current learning list and why.
2016-05-23
161 reads
This week Steve Jones looks at the formal way in which you might verify changes to your system. Do you have a process?
2016-05-20
228 reads
Branching code creates complexity to development and should be undertaken with caution.
2016-05-19
91 reads
Steve Jones notes that some features aren't fully developed, but that's not a reason to avoid releasing them.
2016-05-17
146 reads
The next version of SQL Server 2016 will be released on June 1, 2016, which means you can start planning those upgrades.
2016-05-16
98 reads
Adding a release management tool to your software development is a sign of maturity.
2016-05-16
66 reads
2016-05-13
78 reads
A simple change might solve some of those tempdb issues various customers experience.
2016-05-12
192 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