Official Blogger at 2010 PASS Summit
I will be one of the “official” bloggers during the 2010 PASS Summit, which means that I get to sit...
2010-11-09
484 reads
I will be one of the “official” bloggers during the 2010 PASS Summit, which means that I get to sit...
2010-11-09
484 reads
I recently became aware of a special hack in Windows 7. It is called GodMode and can very simply be...
2010-11-09
660 reads
Am I stirring up a hornets nest or beating a dead horse bringing up a the PASS elections the day...
2010-11-08
475 reads
I had some fun last week presenting to the Space Coast User Group in Melbourne as well. They were so...
2010-11-08
329 reads
Hey folks, I recently had the privilege of joining my hometown user group South Florida SQL Server User Group for...
2010-11-08
373 reads
I recently wrote about solid state storage and its different form factor. Well, several major manufacturers have realized that solid...
2010-11-08
545 reads
Picked up this nice script from a client last week. Use this script below to create a Date Dimension for...
2010-11-08
1,138 reads
I've talked about the fact that everyone needs to contribute for the success of the team and that everyone should...
2010-11-08
1,458 reads
When I was young, I never thought I did. I was sure that I knew what was best for my...
2010-11-08
1,039 reads
I’m sitting in Top Pot Donut. I’m having a fantastic apple fritter. I’m also trying out the capabilities of the...
2010-11-07
565 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