Changing Course On Learning
With all the new stuff on the Microsoft Data Platform, it’s really hard to keep up with it all. I had...
2015-12-03
502 reads
With all the new stuff on the Microsoft Data Platform, it’s really hard to keep up with it all. I had...
2015-12-03
502 reads
You know you want to go on the SQL Cruise. You can. You just have to convince the boss that...
2015-12-01
481 reads
A great benefit that I get with my job is that I get to travel all over the place to...
2015-11-05
473 reads
WHOOP!
Another PASS Summit is complete. This one was amazing. It’s my first time ever as a member of the Board...
2015-11-02
464 reads
It’s Kilt Day!
I want to give a quick assessment on how the Summit has been for me so far. Monday,...
2015-10-29
828 reads
If you’re going to PASS and you want to have a chat, I want to talk to you. If it’s...
2015-10-23
518 reads
Guilty.
I’m at least one of the people who yelled Zoomit during a keynote at PASS Summit.
I want to take a moment...
2015-10-22
566 reads
Next week at the PASS Summit I’ll be presenting a session called Statistics for the New Data Pro.
You can read...
2015-10-20
393 reads
I’ve put this off for too long. It’s time to get my feet wet with some new tech.
Step 1 is...
2015-10-14
564 reads
This is the second year of Argenis Without Borders and the second year that I’m taking part. Last year we...
2015-10-12
524 reads
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...
By Steve Jones
I was creating a question on sp_readerrorlog and realized that this procedure is different...
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