2016-06-22
233 reads
2016-06-22
233 reads
Larry Page is a very interesting person, one that is looking to change the world.
2016-06-21
136 reads
After the crash of an US Air Force database was reported, Steve Jones has some advice.
2016-06-20
129 reads
2016-06-20
86 reads
SQL Server 2016 runs faster, sometimes without you changing anything.
2016-06-17
284 reads
The Stretch database feature in SQL Server 2016 is fantastic, but is it too expensive?
2016-06-15
225 reads
2016-06-14
95 reads
2016-06-13
76 reads
One of the things that will be debated quite a bit in the next few years will be the penalties for data loss.
2016-06-13
128 reads
2016-06-10
108 reads
By Steve Jones
Thanks for attending my sessions. Resources below: Slides: Using Data API Builder GitHub repo: ...
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...
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