The PASS Board: #passvotes
Ever been in a fight? Ever been in one that’s not completely going your way? I’ve done this and seen...
2014-10-02
473 reads
Ever been in a fight? Ever been in one that’s not completely going your way? I’ve done this and seen...
2014-10-02
473 reads
I am putting up an abnormal Saturday morning blog post in support of the actions taken by the PASS Board...
2014-09-27
595 reads
While I was at the VMWare HQ getting some amazing training a few weeks ago, we had the opportunity to...
2014-09-26
667 reads
Having very recently gone through the nomination process for the PASS Board, I thought I would share a few things...
2014-09-24
502 reads
The latest update to my book, SQL Server Query Performance Tuning was released last week. This is the fourth edition...
2014-09-23
787 reads
The whole idea behind PASS is to build a community of people who can assist each other in their daily...
2014-09-22
559 reads
I am running for the PASS Board. You can read more about what I’ve posted and what others have to...
2014-09-19
535 reads
This year, I submitted my application to run for the PASS Board and it was accepted. This then is my...
2014-09-22 (first published: 2014-09-17)
6,197 reads
I’m putting on a pre-conference seminar (also known as a pre-con) at the PASS Summit this year. I’m really honored...
2014-09-16
615 reads
I’ve been attempting to expand my reach to get back to my roots in development. I’m doing this because I...
2014-09-15
695 reads
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...
By Steve Jones
I was creating a question on sp_readerrorlog and realized that this procedure is different...
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