Are There That Many GUIDs?
Steve Jones talks about a recent survey that showed more people use GUIDs as primary keys than identity values.
2015-03-24 (first published: 2010-10-12)
690 reads
Steve Jones talks about a recent survey that showed more people use GUIDs as primary keys than identity values.
2015-03-24 (first published: 2010-10-12)
690 reads
Today we have a guest editorial from Andy Warren where he looks back at how things have changed.
2015-03-23
128 reads
If you want to implement a service-oriented architecture on Windows, Service Broker is still your best choice, argues Phil Factor.
2015-03-23
469 reads
R is an interesting language and one that might become more important to data professionals in the future. Microsoft is also making an investment here.
2015-03-19
501 reads
2015-03-18
808 reads
A job Steve Jones has never heard of is using data to improve medical treatments.
2015-03-16
102 reads
2015-03-16
186 reads
How much of an investment should you make in learning design? Steve Jones talks about why we should learn how to do it right.
2015-03-11 (first published: 2010-09-29)
339 reads
This article looks at two critical limitations suffered by MongoDb compared with SQL Server.
2015-03-10
472 reads
Learning opportunities abound, but they can be stressful, as shown in today's guest editorial.
2015-03-09
266 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