You Need Offline Backups
Steve talks about the need to be careful with backups in this age of malicious attackers.
2019-02-18
67 reads
Steve talks about the need to be careful with backups in this age of malicious attackers.
2019-02-18
67 reads
2019-02-15
85 reads
2019-02-14
75 reads
Google was recently fined for GDPR violations. Steve wonders if their confusing documentation and tools are the problem.
2019-02-13
84 reads
Backblaze releases their new hard drive stats and there are some interesting items in the report.
2019-02-12
92 reads
It's not the zero'th time Phil Factor has complained about the madness of a binary collation.
2019-02-11
89 reads
A minor disaster for Steve reveals some cracks in his pre-DR planning.
2019-02-11
96 reads
There is more to our lives than work, and Steve asks that we learn more about other parts of life.
2019-02-08
90 reads
Learning active forgiveness can be a challenge, but it may help you build a better team.
2019-02-07
84 reads
Setting up your authorization and security can be fairly easy, but perhaps we ought to consider more complex scenarios.
2019-02-06
69 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