Pass Summit 2017
It’s about that time of year again when there is a buzz in Seattle in regards to PASS Summit. Many...
2017-10-26
419 reads
It’s about that time of year again when there is a buzz in Seattle in regards to PASS Summit. Many...
2017-10-26
419 reads
This week has been a whirlwind; as the results came in earlier this week on the election I wanted to...
2017-09-28
540 reads
As part of the campaign material for this years election for Board of Directors; the candidates were asked to answer...
2017-09-19
414 reads
This year I decided to take “someday” to heart and do something that has been on my mind for awhile...
2017-09-21 (first published: 2017-09-14)
1,677 reads
And like the wind another SQL Saturday Louisville has come and gone. This past weekend seemed to be a huge...
2017-08-09
485 reads
We are having an extra Louisville SQL Server and Power BI User Group meeting this month due to the SQL...
2017-07-24
413 reads
Last week Aaron Bertrand (b|t) published a post regarding five new PAC Community Ambassadors for SentryOne. I am privileged and...
2017-07-17
334 reads
Wow, hard for me to believe it has been a little bit since the last T-SQL Tuesday block party. This...
2017-07-11
489 reads
Over the course of several years, I have given many technical and non-technical presentations. It is fun for me to...
2017-06-07
453 reads
Sometimes we, as data professionals, have to think outside the box. I know, crazy idea right? Each shop and situation...
2017-04-26
442 reads
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...
By SQLPals
Why sys.fn_dblog Is Undocumented And Why It's Still There Why sys.fn_dblog...
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