2014-02-17
186 reads
2014-02-17
186 reads
Networking is one of those things that so many people say is good for your career? But why? Steve Jones has a few examples today from his own experience.
2014-02-17 (first published: 2009-08-17)
252 reads
What is continuous integration for databases? Steve Jones gives a short explanation and information on why you might care about this.
2014-02-13
442 reads
Do you know how often to back up your SQL Server transaction log? Steve Jones has a few thoughts today and notes that you definitely need to know how to restore the log backups.
2014-02-12
566 reads
Microsoft published a vision for their data platform and SQL Server recently. Steve Jones has a few thoughts on what this means for you. Hint: it's cloudy.
2014-02-11
142 reads
We've all been there, trying to improve performance in a panic situation and not making things better.
2014-02-10
398 reads
Today we have a guest editorial from Andy Warren. He talks about strange questions in interviews and whether they help you assess the candidate.
2014-02-07
394 reads
Steve Jones likes the Cloud and gives a few reasons why. He also thinks we'll see more data in the cloud over time.
2014-02-06
203 reads
2014-02-05
671 reads
Old data can come back to haunt you. Steve Jones talks about potential problems when data comes back to life.
2014-02-04
170 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