Are you Living under a SQLRock ?
I don’t mean a LaRock aka SQLRockstar, but an actual rock.
I was at dinner last week after our all...
2010-10-26
380 reads
I don’t mean a LaRock aka SQLRockstar, but an actual rock.
I was at dinner last week after our all...
2010-10-26
380 reads
For those of you who have seen our team present, we always do our best to make it really informative,...
2010-10-26
872 reads
Hey Gang,
Sorry for the absence. I have been offline for a bit dealing with some family stuff. All if good...
2010-10-26
378 reads
I'm happy to announce that voting for the 2011 PASS SQLRally Pre-con sessions is now open! There are four tracks:...
2010-10-26
403 reads
Pre Conference seminar voting is up now. Go make it happen! Here's the description of our session:
Title:
Business Intelligence Workshop
Speaker:Patrick LeBlanc,...
2010-10-26
921 reads
The SQLRally, a new PASS initiative taking place in the spring, is going to be a community driven event. This...
2010-10-26
1,075 reads
I have no intentions of kicking the bucket – ever. I have no intentions of getting old either. We’ll see how...
2010-10-26
782 reads
With SQLSaturday #49 we tried something I call micro-sponsors, charging $5 for a blogger to sponsor the event. It’s a...
2010-10-26
995 reads
Benjamin Nevarez (blog) has been working really hard on a book on the Query Optimizer. It just got finished in...
2010-10-26
599 reads
Finally I am getting around to posting my Quarterly Goal review. Last quarter’s review can be found here.
Start a Blog
This...
2010-10-26
748 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