Index Rebuild Status Update And Giveaway!: Quick Tips
I have a Free 1-Month code to PluralSight. There's no catch or gimmick, If your comment is in this post,...
2013-12-02
493 reads
I have a Free 1-Month code to PluralSight. There's no catch or gimmick, If your comment is in this post,...
2013-12-02
493 reads
Well, this fall has been crazy. As you may have noted from a couple of my previous posts, link to...
2013-12-01
618 reads
This is a temporary post that was not deleted. Please delete this manually. (e6e588b0-6d28-4504-914d-36fc0145f1b9 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2013-12-01
405 reads
(Be sure to checkout the SQLpassion Online Academy, where you get High-Quality SQL Server Trainings with Instant Access!)
Over the...
2013-12-05 (first published: 2013-11-30)
4,237 reads
Wow, can you believe it’s been a month already since I posted the first issue of “What’s In My Utility...
2013-11-30
1,105 reads
EDIT: Please also see in depth comment from Brent Ozar on my main site which extends the query provided below...
2013-11-30
4,803 reads
SQL Server related information from Windows registries
The Windows Registry is a hierarchical database that stores configuration settings and options on Microsoft Windows operating systems. It contains...
2013-11-30
2,194 reads
I’ve always been a fan of the feeling when I find an old blog post that’s got just the information...
2013-11-29
1,400 reads
Tool Archaeology, Digging Through The Web About every three to six months I will burn some time and just go digging for tools. Mostly, I’m looking for stuff related...
2013-11-29
33 reads
Tool Archaeology, Digging Through The Web
About every three to six months I will burn some time and just go digging...
2013-11-29
1,364 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