SQLSaturday #59 – Speaker Interview #11 with Steve Simon
SQLSaturday #59 – Speaker Interview #11 with Steve Simon
Queue the track. I can’t help hearing the theme song from Indiana Jones...
2010-10-26
721 reads
SQLSaturday #59 – Speaker Interview #11 with Steve Simon
Queue the track. I can’t help hearing the theme song from Indiana Jones...
2010-10-26
721 reads
It’s getting down to brass tacks. There is now only 2 more weeks until the PASS Summit. There’ve been a...
2010-10-26
825 reads
There’s a change in how pre-conference seminars are being picked for the SQL Rally event next year in Orlando, FL....
2010-10-26
1,074 reads
A few weekends ago, I participated in my first Tech Fest, speaking at the Houston Tech Fest 2010 event held...
2010-10-26
528 reads
This past Saturday, our NTSSUG group hosted SQL Saturday 56, which was our second SQL Saturday of the year. This...
2010-10-26
1,053 reads
With the new securables since SQL Server 2005, Microsoft has advised that we start moving away from the fixed server...
2010-10-26
4,547 reads
I had done a little work with CDC last year, experimenting with the way that it handles changes in your...
2010-10-26
2,460 reads
I’m one of the 3 lucky guys whose submitted precon workshop for the developer category
for PASS SQLRally is in the...
2010-10-25
630 reads
Don’t forget the Minnesota SQL Saturday is this Friday. Remember, we’re DIFFERENT and out event is on a Friday instead...
2010-10-25
580 reads
Solid state storage is the new kid on the block. We see new press releases every day about just how...
2010-10-25
1,443 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