Functionality and User Experience are important, too
There are a few posts and articles around the security-scape lately concluding Windows 7 is more secure than OS X,...
2011-08-09
820 reads
There are a few posts and articles around the security-scape lately concluding Windows 7 is more secure than OS X,...
2011-08-09
820 reads
My primary responsibility at my organization is no longer to be the security architect and incident response team lead. I...
2011-08-08
963 reads
I'm always wary of contests to win free stuff, but the folks running MSSQLTips.com are legitimate (I write there as...
2011-08-04
1,047 reads
I grew up immersed in security. My father was a US Marine and going on and off base meant... security....
2011-08-03
1,235 reads
We recently ran into a case where connecting to a Windows Server 2003 server with SQL Server installed on it,...
2011-08-02
15,680 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-28
2,187 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-25
1,063 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-22
1,378 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-21
735 reads
In a previous post I gave suggestions on how to get speaking credentials for consideration at a larger event, such...
2011-07-21
953 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