Speaking at SQL Saturday #49 Orlando, Florida
After making the trip last weekend to Houston for Houston Techfest with the kids I am off again, but this...
2010-10-14
564 reads
After making the trip last weekend to Houston for Houston Techfest with the kids I am off again, but this...
2010-10-14
564 reads
You know those guys that work the door at clubs, seperating the wheat from the chaff, culling the herd, Choosing the Slain, sifting...
2010-10-14
714 reads
SQLSaturday #59 Speaker Interviews Series #3 - Kevin S. Goff
You can catch all the speaker interviews on this upcoming event, on...
2010-10-14
918 reads
Recently I was at an event and a speaker wasn’t able to make a session. There was a minor scramble,...
2010-10-14
754 reads
There are now 4 weeks until the PASS Summit and a few times now I’ve discussed ( 1, 2, 3 ) some...
2010-10-14
784 reads
First, a reminder that our fourth annual SQLSaturday is this Saturday, October 16, 2010, at Seminole State College in Lake...
2010-10-14
600 reads
A while ago, I showed you how to find out what indexes were on a table using the GUI. Today,...
2010-10-14
35,285 reads
Please join as at the 2010 global summit for the Professional Association for SQL
Server in Seattle. The conference is the...
2010-10-13
489 reads
I’ll be presenting tonight at the Southern New England SQL Server Users Group (SNESSUG). The topic is “Using DMVs as...
2010-10-13
690 reads
Missing NumbersToday a developer came up to me and wanted help solving a problem he was running into with a...
2010-10-13
1,061 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