JSSUG Tomorrow Night - 8/18/2010
I heard a little birdy cherping and it looks like there is going to be a great give away tomorrow...
2010-08-18
554 reads
I heard a little birdy cherping and it looks like there is going to be a great give away tomorrow...
2010-08-18
554 reads
While getting prepared for an upcoming presentation, I remembered that I installed the November CTP trial on the machine that...
2010-08-18
461 reads
I saw a short talk from Dan Pink a few months back from this year’s TED conference. It’s very cool,...
2010-08-18
1,062 reads
Microsoft has released Cumulative Update 11 for SQL Server 2005 SP3, which is Build 9.0.4309. There are only four fixes...
2010-08-17
831 reads
Microsoft has released Cumulative Update 3 for SQL Server 2008 R2 RTM, which is Build 10.50.1734. I count 29 fixes...
2010-08-17
898 reads
I am a pretty big fan of SQL Server Data Compression, especially the enhanced version found in SQL Server 2008...
2010-08-17
2,321 reads
First, apologies to those of you outside the Dallas-Ft. Worth metro area… I’ve backed off from using my blog as...
2010-08-17
609 reads
Have you ever run into an error and been puzzled as to why that error occurred?
Recently I have been working...
2010-08-17
779 reads
Looking for some free SQL Server training? How about 24 hours of free training offered by some of the top...
2010-08-17
493 reads
Just a quick note that today at 12:30 EST (11:30 CST) I’ll be presenting on Policy-Based Management for SQLLunch. If...
2010-08-17
429 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