2017-01-30
76 reads
2017-01-30
76 reads
There are some changes to memory limits in SQL Server 2016 SP1 Standard Edition.
2017-01-26
1,663 reads
When things go wrong, how do you handle them? Steve Jones comments on crisis management using a great example from Amazon.
2017-01-25
217 reads
Being unemployed is difficult. Here's something I learned to help me through it.
2017-01-24
304 reads
2017-01-23
125 reads
2017-01-23
105 reads
Sometimes the hardware or software we use prevents upgrades, which isn't necessarily good for any of us.
2017-01-20
87 reads
2017-01-18
212 reads
Many of our security issues come down to not patching software when there are updates available.
2017-01-17
131 reads
This week Steve Jones looks at hardware and the ways in which you might assemble a set of computers for building software.
2017-01-16
71 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