2018-11-16
95 reads
2018-11-16
95 reads
2018-11-15
720 reads
Some controversy over a new Code of Conduct has risen. Steve thinks we just need treat each other well.
2018-11-14
193 reads
2018-11-13
120 reads
2018-11-12
151 reads
At the PASS Summit, there are a few announcements of changes to the data platform.
2018-11-12
67 reads
Is a data breach a danger to those identified in the data. A court says no, but Steve Jones wonders if this is a bad decision.
2018-11-09 (first published: 2015-03-12)
187 reads
With so many companies looking at other platforms, when should an organization consider changing their database? Steve Jones has a few thoughts.
2018-11-08 (first published: 2015-01-20)
258 reads
2018-11-07
89 reads
2018-11-06
153 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