2018-01-26
68 reads
2018-01-26
68 reads
2018-01-25
98 reads
Today Steve Jones notes that your software should handle the load and work, but it needs to get done as well.
2018-01-24 (first published: 2013-11-07)
210 reads
We need data to innovate more. Steve Jones reminds us this means opportunity for many of us.
2018-01-22
61 reads
GDPR is coming and many are concerned. Steve Jones has a few thoughts today.
2018-01-18
193 reads
The build v buy decision isn't the final one. We also need to decide if we'll use software as is or customize it.
2018-01-16
97 reads
Phil Factor on a tale of how dodgy mock data derailed an otherwise-convincing prototype.
2018-01-15
215 reads
When you need to debug or troubleshoot, Steve Jones wants you to disable, not drop, objects.
2018-01-12
78 reads
2018-01-10
260 reads
An analysis of salaries uses statistics to determine significance of the data. Is this data science?
2018-01-09
91 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