SQL Saturday Advice – Feedback and Raffles
At SQL Saturday #28, I was surprised to be given the speaker evaluations after my first session. One of the...
2010-08-19
724 reads
At SQL Saturday #28, I was surprised to be given the speaker evaluations after my first session. One of the...
2010-08-19
724 reads
At the recent SQLSaturday #28 in Baton Rouge, LA, I had the opportunity to meet Wes Brown (Blog | Twitter), and...
2010-08-19
474 reads
I give a lot of presentations based on best practices, and in all of them I stress the importance of...
2010-08-18
2,647 reads
In the upcoming weblog postings I want to work out the differences between unique
and non-unique indexes in SQL Server. I...
2010-08-18
3,252 reads
So the slate has been announced, so now I feel like I can talk about not making the cut. Based...
2010-08-18
525 reads
Two more eligible developers and deserving projects have been selected. Any proposals submitted but not selected this time will be...
2010-08-18
636 reads
If you read this blog I’m sure you read Steve Jones’ blog as well, so you know that the PASS...
2010-08-18
415 reads
I read Stuart
Ainsworth’s blog post this morning, and I thank Stuart for posting
something. However, there’s an implication in...
2010-08-18
1,725 reads
I’m flying to Nashville today for the Board meeting on August 19 and 20, 2010. I had already planned to...
2010-08-18
936 reads
Well I have to say I’m surprised. It’s always hard to get a rejection, and I’m not quite sure what...
2010-08-18
3,249 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
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
Comments posted to this topic are about the item Server-Level Table sizes
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