June S3OLV Wrapup
Last night we had our monthly Chapter User group meeting in affiliation with PASS. Honestly, the experience was quite humbling...
2010-06-11
587 reads
Last night we had our monthly Chapter User group meeting in affiliation with PASS. Honestly, the experience was quite humbling...
2010-06-11
587 reads
We have come to that time of month again – blog party. This time, the party is hosted by Jorge Segarra...
2010-06-08
1,043 reads
The S3OLV monthly meeting is being held this Thursday. We will be meeting at the same location and time as...
2010-06-07
490 reads
Today I am finally getting around to the review of the first chapter as promised. I talked about the book...
2010-06-07
803 reads
Have you ever been required to update your SQL Server environment and needed to test it? I know, rhetorical question....
2010-06-04
678 reads
At long last I am bringing the next installment in this mini-series. You can find the rest of the articles...
2010-05-25
1,439 reads
Last week I posted an article about plagiarism. This is a follow-up to that. After posting that blog article, Steiner...
2010-05-24
959 reads
Recently I received a new opportunity via email. Steve Jones at SQLServerCentral sent me an email to see if I...
2010-05-21
654 reads
Today I ran into an interesting website. While I was trying to locate information concerning a SQL Saturday event, I...
2010-05-20
719 reads
Today I ran into an interesting website. While I was trying to locate information concerning a SQL Saturday event, I...
2010-05-20
540 reads
By James Serra
Making Data AI-Ready, Part 1 (This is the first article in a three-part series...
By Steve Jones
Thanks for attending my sessions. Resources below: Slides: Using Data API Builder GitHub repo: ...
By Steve Jones
Thanks to everyone that attended my sessions at VS Live San Diego yesterday. It...
When I run my query from DW, which uses a linked server, it times...
Comments posted to this topic are about the item Implementing Type 4 Slowly Changing...
Comments posted to this topic are about the item The Disabled Index
I run this code on SQL Server 2022.
CREATE TABLE Drink
(
drinkid INT NOT NULL
CONSTRAINT DrinkPK PRIMARY KEY CLUSTERED,
drinkname VARCHAR(20),
rating NUMERIC(2, 1)
)
GO
INSERT INTO Drink
(
drinkid,
drinkname,
rating
)
VALUES
(1, 'Margarita', 4.5),
(2, 'Mojito', 4.3),
(3, 'Old Fashioned', 4.7),
(4, 'Martini', 4.4),
(5, 'Cosmopolitan', 4.2)
GO
ALTER INDEX drinkpk ON dbo.drink DISABLE
GO
SELECT * FROM dbo.Drink
GO
What is the result? See possible answers