2018-04-05
211 reads
2018-04-05
211 reads
Titles are very important to many people. Steve wonders if the main title many of us use will go away.
2018-04-04
250 reads
2018-04-03
251 reads
2018-04-02
90 reads
Today we have a guest editorial from Andy Galbraith that looks at the ways in which he has helped others in his career.
2018-04-02 (first published: 2014-07-09)
252 reads
AD Authentication in SQL Server has been around for a long time, so why do we still use SQL Authentication?
2018-03-30
432 reads
2018-03-29
163 reads
Using new features and changing code can cause problems in your environment. Always test to be sure that the impact is acceptable.
2018-03-27
72 reads
2018-03-26
99 reads
We often make changes to production systems in an ad hoc manner. Steve asks how much auditing we might have in place.
2018-03-23
82 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