SELECT TOP 3 SQLBOOKS FROM 2010
This is just a short post for a Friday. This is my list of the Top 3 SQL Server books...
2010-12-10
963 reads
This is just a short post for a Friday. This is my list of the Top 3 SQL Server books...
2010-12-10
963 reads
I may end up missing this one next week... it all depends on when the baby comes. 🙂
Tuesday
PASS Application Development...
2010-12-10
1,019 reads
Cracked Up
If you’ve been trying to come to the blog lately, you may have noticed a few errors connecting. Resources...
2010-12-10
332 reads
Join me next Tuesday, December 14th at 11:00am CST as I present a webcast on behalf of the PASS AppDev...
2010-12-10
646 reads
I have been trying to figure out where to go in 2011 for SQL Saturdays, especially as Red Gate is...
2010-12-10
714 reads
For years we’ve been told you should use Enterprise Manager in SQL Server 2000 or SQL Server Configuration Manager in...
2010-12-10
2,260 reads
She can dig it!
D Sharon PruittIn the lead in to this post, I talked about how the plan cache can...
2010-12-09
6,254 reads
The Way We Work Isn’t Working by Tony Schwartz ($19 @ Amazon) is a holistic approach to work and a work...
2010-12-09
604 reads
I’ve finally got everything together to get the web site going for SQL Saturday #71. The call for speakers is...
2010-12-09
593 reads
It’s been a few months…time for another Spotlight!
Just to catch you up, occasionally someone in the SQL community – usually someone...
2010-12-09
1,421 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