The Test of Time
IBM recently turned 100 years old and Steve Jones wishes more companies would try to build their business to grow to 100.
2015-06-22 (first published: 2011-06-28)
213 reads
IBM recently turned 100 years old and Steve Jones wishes more companies would try to build their business to grow to 100.
2015-06-22 (first published: 2011-06-28)
213 reads
This Friday Steve Jones asks how you track uptime. Does your scheduled maintenance count against your metrics?
2015-06-19 (first published: 2011-01-28)
197 reads
Today we have a guest editorial from Andy Warren that looks at side projects and how you might actually grow our careers.
2015-06-18
184 reads
A guest editorial from Andy Warren looks at the disagreements between teams in technology.
2015-06-17
217 reads
With no end to company hack attacks in sight, will we get new regulation instead?
2015-06-16 (first published: 2011-06-22)
215 reads
The debate over how to change code or solve a problem can create arguments that last for years. Steve Jones notes the idea of limiting debates to five minutes is interesting.
2015-06-15
183 reads
CSS Engineers at Microsoft are reporting more space issues with database systems. Steve Jones has a few comments.
2015-06-15
141 reads
2015-06-12
136 reads
Steve Jones is searching for anyone that is using In-Memory OLTP tables in production.
2015-06-11
171 reads
There are challenges with the large scale archiving of data. Steve Jones talks about rethinking this as a daily process rather than a periodic one.
2015-06-09
465 reads
By Steve Jones
Thanks to everyone that attended my sessions at VS Live San Diego yesterday. It...
By Steve Jones
I was creating a question on sp_readerrorlog and realized that this procedure is different...
By SQLPals
Why sys.fn_dblog Is Undocumented And Why It's Still There Why sys.fn_dblog...
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