Can You Dig It? – The Plan Cache
She can dig it!
D Sharon PruittIn this new series of posts, I plan to investigate the SQL Server plan...
2010-12-08
839 reads
She can dig it!
D Sharon PruittIn this new series of posts, I plan to investigate the SQL Server plan...
2010-12-08
839 reads
CHRISTMAS AT THE MUSICALS
Originally posted on Senghenydd Cricket Club website.
Join The Romilly Singers as they entertain you through a...
2010-12-08
557 reads
A repost from SQLServerCentral.
What would you like for Christmas?
Hint, hint, a little visual imagery of the kind of prize that...
2010-12-08
910 reads
“Next 24 Hours of PASS on March 15-16 2011, celebrating Women’s History Month with 24 female speakers!”
Thus goes the announcement on...
2010-12-07
814 reads
I’ve been pretty quite since the PASS Summit and with good reason. Every year we have a chapter leader meeting....
2010-12-07
877 reads
This past Saturday I presented my shiny new Introduction to SQL Server Partitioning session at SQL Saturday 61.
There were two...
2010-12-07
709 reads
The call for speakers is open through December 15, 2010, and I hope many of you will take the chance...
2010-12-07
1,195 reads
I’ve been thinking about my goals for 2010, ones that I’ve set and adjusted a couple times, and thinking more...
2010-12-07
537 reads
Cross-posted from a Goal Keeping DBA blog:
Just recently, my oldest son entered the ranks of the teenagers. I shouldn’t actually...
2010-12-07
2,072 reads
As I mentioned in an earlier post I have recently moved my blog to a new domain name. This is...
2010-12-07
765 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