Monday Coffee 2017-04-24
Back after a couple of busy weeks, kinda looking forward to getting back into the old work routine (ah, well...
2017-04-24
328 reads
Back after a couple of busy weeks, kinda looking forward to getting back into the old work routine (ah, well...
2017-04-24
328 reads
Back after a couple of busy weeks, kinda looking forward to getting back into the old work routine (ah, well...
2017-04-24
178 reads
Morning all, it’s been a busy week so I haven’t had a chance to write a post. Instead I’ve seen...
2017-04-13
309 reads
Morning all, it’s been a busy week so I haven’t had a chance to write a post. Instead I’ve seen...
2017-04-13
155 reads
So SQLBits is over and I have to say that I really enjoyed attending on the Saturday, hopefully next year...
2017-04-10
300 reads
So SQLBits is over and I have to say that I really enjoyed attending on the Saturday, hopefully next year...
2017-04-10
177 reads
As this is being published I’m on my way up to Dublin airport to head on over to the UK...
2017-04-07
347 reads
As this is being published I’m on my way up to Dublin airport to head on over to the UK...
2017-04-07
149 reads
One of the questions that I was asked at SQL Saturday Iceland was “how can I view the filesystem within...
2017-04-05
471 reads
One of the questions that I was asked at SQL Saturday Iceland was “how can I view the filesystem within...
2017-04-05
175 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