Midlands PASS Meeting - August 10
Topic: Creating a SQL Server Utility Environment
Can SQL Server be offered as a service (SQLaaS)? Can SQL Server be treated like...
2010-08-05
776 reads
Topic: Creating a SQL Server Utility Environment
Can SQL Server be offered as a service (SQLaaS)? Can SQL Server be treated like...
2010-08-05
776 reads
I noticed the scores for the first part of the PASS nomination process were posted recently. These were the aggregate...
2010-08-05
420 reads
If you are looking for a rewarding way to spend next Saturday, August 14th 2010, do yourself a favour and...
2010-08-05
709 reads
Cross-posted from The Goal Keeping DBA blog.
I'm making an earnest effort to work through Getting Things Done in an effort...
2010-08-05
755 reads
Today at 12:30 EST I will be presenting for SQL Lunch on the topic of Analysis Services Security. Make sure to be...
2010-08-05
695 reads
Planning is going forward for SQLSaturday #49 – Orlando and the event is coming together well. My main task is sponsors...
2010-08-05
357 reads
Have you ever tried to create a dataset in SSRS 2008 (based upon an OLAP cube) and ran into that...
2010-08-05
1,405 reads
Being a good mentor is hard, perhaps harder than being a parent, because with children it’s fair to share with...
2010-08-05
391 reads
I like way that the SQL Rally is being run. Having the community interact with the organizers and try to...
2010-08-05
1,147 reads
Continuing on with my Thursday series of SQL Saturday posts, this time I wanted to talk about keynotes.
I’ve been to...
2010-08-05
430 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
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