2018-08-31
91 reads
2018-08-31
91 reads
When we risk failure, we also have the opportunity for success, so try something new today.
2018-08-30
89 reads
The ways in which we collect and use data aren't always apparent to our customers. Perhaps we should do better.
2018-08-29
41 reads
We can't protect against all hacks, but can we prove they weren't our fault?
2018-08-28
56 reads
Phil Factor is not amused by SQL Server's handling of the comma-separated value (CSV) file format.
2018-08-27
538 reads
Today Steve asks about the fun times you might have had at work and captured in pictures.
2018-08-24
105 reads
2018-08-23
72 reads
2018-08-22
198 reads
2018-08-21
70 reads
Data in our systems has an actual dollar value, which we might be aware of if we have to purchase more.
2018-08-20
59 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