Monday Coffee – Lab Environments
Having a lab environment is an absolute must for any IT professional. You need somewhere that you can test out...
2017-06-05
282 reads
Having a lab environment is an absolute must for any IT professional. You need somewhere that you can test out...
2017-06-05
282 reads
The weather in Dublin has reverted to type (aka rain) but hopefully we’ll get some sun this weekend! This week...
2017-06-02
451 reads
Bit of a powershell themed post this week as I haven’t had that much time to research so this one...
2017-06-13 (first published: 2017-05-31)
1,186 reads
I’ve always said that this blog is my way of giving back to the SQL Server community but there is...
2017-05-29
344 reads
The weather in Dublin is absolutely gorgeous at the moment so I’m not planning on spending much time inside this...
2017-05-26
414 reads
One of the changes that’s been brought into the database engine in SQL Server 2017 is the ability to disable...
2017-06-07 (first published: 2017-05-24)
4,717 reads
I hope everyone had a good weekend. I spent mine watching probably the most dismal performance of rugby I’ve seen...
2017-05-22
496 reads
Everyone finished patching all their servers? In-between patching this week I’ve been reading…
Why VS Code Increases my Productivity
Rob talks about...
2017-05-19
378 reads
One of the new features included in SQL Server 2017 that Microsoft has detailed here is a new DMF called...
2017-05-17
1,250 reads
After the latest cyber attack I’ve had a fun weekend making sure all my devices are fully up-to-date with the...
2017-05-15
382 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