It's Time to Patch and Upgrade
With bugs in our CPUs, everyone needs to plan on patching or upgrading.
2018-01-05
120 reads
With bugs in our CPUs, everyone needs to plan on patching or upgrading.
2018-01-05
120 reads
Some companies don't want to use tools, but that doesn't make sense to Steve Jones.
2018-01-04
112 reads
2018-01-03
78 reads
Data can help you understand the value you bring to a company as a data professional.
2018-01-02
121 reads
2018-01-01
50 reads
2018-01-01
72 reads
2017-12-29
73 reads
2017-12-28
47 reads
This is usually a slow time for many companies between two holidays, but it doesn't need to be unproductive.
2017-12-27
81 reads
Often we are encouraged to learn the latest things, but sometimes the old stuff is worth knowing too.
2017-12-26
97 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