Slides & Samples from my SQLSaturday #115 presentation about ColumnStore Indexes
As I have announced in my ColumnStore presentation last Saturday in Lisbon, you can
find here the slides
& samples for download....
2012-03-19
810 reads
As I have announced in my ColumnStore presentation last Saturday in Lisbon, you can
find here the slides
& samples for download....
2012-03-19
810 reads
As you might know, Microsoft has released on March 7 the RTM version of SQL Server
2012. If you are an...
2012-03-09
4,519 reads
I'm very happy today to announce 4 new upcoming SQL Server workshops across Europe
within the next months:
SQL Server Configuration...
2012-03-04
928 reads
Today I want to talk about Statistics Enhancements in SQL Server 2012. As you already
know SQL Server uses Statistic Objects...
2012-02-29
4,383 reads
In the last weeks it was very silent on my weblog, but life is pretty fast in 2012.
Currently I'm preparing...
2012-02-08
576 reads
A few days ago, one of my customers asked if there is a possibility to get a notification
from SQL Server...
2011-12-01
5,604 reads
I have a lot of customers with some impressive SQL Server workloads, those databases
are several hundred GB large, with several...
2011-11-23
8,002 reads
I'm very proud to announce today that I'm running next year
a new event series across Europe: the SQL Server 2012...
2011-11-17
838 reads
Today I want to talk about a phenomenon regarding memory management in SQL Server.
A few weeks ago I had a...
2011-11-04
7,218 reads
On October 18, 2011 I have made unfair and incorrect words on Twitter, Facebook, LinkedIn,
and Xing against the owners of...
2011-11-02
774 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