SQL Confessions 02 SSRS Encryption
In December 2010, I started a little series called SQL Confessions. The idea of this series is as a learning...
2011-01-25
655 reads
In December 2010, I started a little series called SQL Confessions. The idea of this series is as a learning...
2011-01-25
655 reads
In December 2010, I started a little series called SQL Confessions. The idea of this series is as a learning exercise when I come across something that I either...
2011-01-25
14 reads
One week ago today the Las Vegas User group held our monthly meeting. One week ago today, at that meeting,...
2011-01-20
514 reads
One week ago today the Las Vegas User group held our monthly meeting. One week ago today, at that meeting, we had our best attendance in over a year....
2011-01-20
28 reads
If you saw my blog post the other day, you know that S3OLV has a meeting this Thursday (Jan 13,...
2011-01-13
469 reads
If you saw my blog post the other day, you know that S3OLV has a meeting this Thursday (Jan 13, 2010) at 6:30 PM PST. If not, then you...
2011-01-13
17 reads
Woohoo, It’s TSQL Tuuuuuuuuuuuuuuuuuuesday!!! This month we are being hosted by one-half of the MidnightDBA – Jen McCown (Blog | Twitter), and...
2011-01-11
583 reads
For this TSQL Tuesday post, I will just add a short list of my professional goals for this next year. Otherwise, this post would be mostly about my non-professional...
2011-01-11
5 reads
Tis the calm before the storm. At least it feels like that. The invites have all been sent. The presenter...
2011-01-11
473 reads
Tis the calm before the storm. At least it feels like that. The invites have all been sent. The presenter lined up. Reminders have been sent and now we...
2011-01-11
10 reads
By James Serra
Making Data AI-Ready, Part 1 (This is the first article in a three-part series...
By Steve Jones
Thanks for attending my sessions. Resources below: Slides: Using Data API Builder GitHub repo: ...
By Steve Jones
Thanks to everyone that attended my sessions at VS Live San Diego yesterday. It...
When I run my query from DW, which uses a linked server, it times...
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
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