SQL Saturday #285 Atlanta
It’s been a couple of months since my last SQLSaturday and it’s time! Atlanta is my third SQL Saturday that I’ll...
2014-02-15
486 reads
It’s been a couple of months since my last SQLSaturday and it’s time! Atlanta is my third SQL Saturday that I’ll...
2014-02-15
486 reads
I’m just a little late to the party, but no time like the present, right? I plan to be very...
2014-02-15
639 reads
A few weeks ago I wrote a post about comparing the contents of entire tables in Power Query, and a...
2014-02-15
768 reads
A simple query in Hive reads the entire dataset even if we have where clause filter. This becomes a bottleneck...
2014-02-15
577 reads
Facebook graph is the primary way for external apps to talk with Facebook. This allows you to get all the...
2014-02-15
531 reads
The first time I had an Islay single malt, my mind was blown. In my first foray into the world...
2014-02-15
451 reads
This is my blog. Here, I’d like to say "Hello" and wish myself many posts. I’ll be mainly posting about...
2014-02-15
150 reads
Today I watched DATAVIZ YOU THOUGHT YOU COULD NOT DO WITH SSRS by Jason Thomas. The intro felt long, but...
2014-02-14
755 reads
This is part of my Powershell Challenge, to learn more about PowerShell (PoSh) using the Learn Windows Powershell 3 in a Month...
2014-02-14
983 reads
Consider this now familiar view from the field:
“I’ve run a virtual team for the past 18 months in the development...
2014-02-14
1,135 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