SQL Saturday #28 - Lessons Learned
After spending a week in Tampa, FL at a client site I've had some time to unwind and reflect back...
2010-08-23
960 reads
After spending a week in Tampa, FL at a client site I've had some time to unwind and reflect back...
2010-08-23
960 reads
Thanks to everyone who attended my presentation at SQL Saturday #51 - Nashville. I apologize for going long and not getting...
2010-08-22
776 reads
“The information age is an idea that the current era will be characterized by the ability of...
2010-08-22
31 reads
“The information age is an idea that the current era will be characterized by the ability of individuals to transfer information freely, and to have instant access to knowledge...
2010-08-22
18 reads
Last weekend I went to Baton Rouge (by way of New Orleans) to attend and speak at the second annual...
2010-08-21
1,081 reads
Tracy Hamlin (Twitter) has been voted as the 2010 Exceptional DBA of the Year by the SQL Server community. The...
2010-08-20
1,056 reads
In 2009 we had a contentious election cycle at PASS, and I won’t go through the details again, but because...
2010-08-20
655 reads
I’ll actually be going up a couple days early for a PASS Board meeting, then shifting to speaker/attendee mode Friday...
2010-08-20
503 reads
I recently had to find a way to look up how many columns were in a table and which of...
2010-08-20
438 reads
Mladen Prajdic recently announced that the newest version of SSMS Tools Pack is coming out and I am excited.Continue reading ?
The post Great News! SSMS Tools Pack 1.9 is...
2010-08-20
9 reads
By SQLPals
Why sys.fn_dblog Is Undocumented And Why It's Still There Why sys.fn_dblog...
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...
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