Breaking Complex Data into Visualizations that Tell a Story
How much do you enjoy reading pages and pages of detailed report data? A large amount of information presented in...
2014-01-16 (first published: 2014-01-09)
3,052 reads
How much do you enjoy reading pages and pages of detailed report data? A large amount of information presented in...
2014-01-16 (first published: 2014-01-09)
3,052 reads
If you’re a training provider and I’ve missed you, please drop me a line at brian {dot} kelley {at} sqlpass...
2014-01-09
738 reads
When I am tasked to do a business intelligence or data warehouse assessment, the steps I take to do that...
2014-01-09
2,048 reads
I’ve recently helped a company move their infrastructure to a new data centre. Part of this involved shutting down a...
2014-01-09
554 reads
I’ve got a torn ACL. I found out yesterday at a visit with a surgeon that gave me the results...
2014-01-09
824 reads
Something you have and something you know – that’s the heart of two-factor, sometimes called multi-factor, authentication. RSA was for years...
2014-01-15 (first published: 2014-01-09)
6,364 reads
Building a reporting system from the ground up is a daunting task. Such a big project usually involves intricate resource...
2014-01-14 (first published: 2014-01-09)
3,152 reads
On the 7th of January, 2014 my baby girl Kaitlyn was born. She came in about a month early.
This is...
2014-01-09
505 reads
2014-01-08
8 reads
2014-01-08
4 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