SSIS Denali Data Flow Grouping
There have been several usability features that have been added to SSIS in the latest CTP.One of these features is...
2010-11-22
840 reads
There have been several usability features that have been added to SSIS in the latest CTP.One of these features is...
2010-11-22
840 reads
I will be replacing speaker Steven Robidas on Tuesday, 23 November at Microsoft TechDays.ca Montreal. The discussion will be on...
2010-11-21
645 reads
My friend Jen McCown of MidnightDBA fame issued a challenge last week called “Un-SQL Friday”. The inaugural topic is on...
2010-11-21
707 reads
About this time last year, Digineer had an internal event where we could share messages of thanks. These messages were...
2010-11-21
589 reads
SQLSaturday#59 went off without a hitch! It was one awesome fun-filled day with our great speakers, sponsors, volunteers, and hundreds...
2010-11-21
1,156 reads
Hey folks, Just a quick preview that we’re hard at work again on a new book with Wiley publishing focused...
2010-11-21
501 reads
Hey there folks! I am sorry it has been about a week without an entry.I have been on planes all...
2010-11-21
331 reads
After the great time everyone had at the PASS Summit this past week I am getting asked more and more...
2010-11-21
371 reads
Follow the rest of this series at the XQuery for the Non-Expert – X-Query Resources introduction post.
Talk to the Experts
In the...
2010-11-21
1,267 reads
Follow the rest of this series at the XQuery for the Non-Expert – X-Query Resources introduction post.
Talk to the Experts
In the...
2010-11-20
951 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