SQLSaturday #21 – Orlando Recap
In my previous post I discussed the week that led up to the SQLSaturday event. In this post I’ll tell...
2009-10-21
684 reads
In my previous post I discussed the week that led up to the SQLSaturday event. In this post I’ll tell...
2009-10-21
684 reads
I have a friend, he’s a technology guy and fairly savvy with hardware and software. We were talking recently and...
2009-10-21
870 reads
I was recently contacted by a developer with what I would consider to be a very simple question. How do...
2009-10-21
2,704 reads
I've started using SCOM 2007 R2, which has given me a chance to try out the Operations Manager Shell. The Ops Mgr Shell...
2009-10-21
1,017 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-10-20
541 reads
It’s easy to think of the Summit as just work, but I can tell you that you’ll have more fun...
2009-10-20
676 reads
Microsoft released Cumulative Update 6 for SQL Server 2005 SP3 yesterday (and the KB link is working today). This is...
2009-10-20
1,042 reads
Each year at the PASS Summit I have run a party on opening night. The last 4 or 5 years...
2009-10-20
646 reads
Hi, all;
The countdown to the NY/NJ SQL Saturday event this upcoming Saturday has begun. And it's NOT TOO LATE to...
2009-10-20
551 reads
As anyone who reads this blog knows, SQLSaturday #21 – Orlando was last Saturday (Oct. 17, 2009) and as a lead...
2009-10-20
407 reads
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...
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
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