Using DMV to identify members roles
Some times is necessary retrieve a list of members of the roles of a database. Doing this is simple, using...
2010-08-12
2,764 reads
Some times is necessary retrieve a list of members of the roles of a database. Doing this is simple, using...
2010-08-12
2,764 reads
There are so many great speakers on this fall’s 24 Hours of PASS.
It’s getting closer so make sure you get...
2010-08-12
198 reads
Good Morning,
We have an exciting SQL Lunch today. Don’t miss out on Jorge Segarra(Blog)|(Twitter) doing a session on Policy Based Management....
2010-08-12
247 reads
Hey there
I’m excited to be one of the speakers on this fall’s 24 Hours of PASS. Check
it out here...
2010-08-12
194 reads
Good Morning,
We have some exciting SQL Lunches coming up. Don’t miss out on Jorge Segarra(Blog)|(Twitter) doing a session on Policy Based...
2010-08-12
266 reads
Hey folks,
It’s white paper Wednesday again and this week Data-tier Applications in SQL Server 2008 R2 by Alan Brewer, Roger...
2010-08-12
406 reads
Hey folks,
It’s white paper Wednesday and this week we’re looking at Bulk Report Generation using SSIS and SSRS 2008 R2...
2010-08-12
234 reads
Passing along this contest from Idera and MSSQLTips. I don’t do many plugs, but it’s a chance for someone to...
2010-08-11
790 reads
One easy to use and useful tool that you can use to compare relative performance between different machines that are...
2010-08-11
1,525 reads
This week we will be checking out the fourth chapter of this book by Alex. This is a continuous effort...
2010-08-11
753 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