2018-02-07
293 reads
2018-02-07
293 reads
You have the opportunity to influence the makeup of the conference agenda for the PASS Summit
2018-02-06
44 reads
Big Data hasn't been in the news, perhaps because more organizations are realizing they need the right data.
2018-02-05
74 reads
2018-02-05
60 reads
This Friday Steve Jones wants you to look back and cringe a bit. Share with the rest of the community what a bad day was for you and see if it was really as bad as you think.
2018-02-02 (first published: 2014-03-21)
261 reads
2018-02-01
101 reads
2018-01-31
332 reads
We are busy as administrators, and it can be very useful to ensure our systems avoid adding to our workload.
2018-01-30
65 reads
2018-01-29
80 reads
2018-01-29
71 reads
By SQLPals
Why sys.fn_dblog Is Undocumented And Why It's Still There Why sys.fn_dblog...
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...
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