Reblog: February 7 to February 13
Photo credit – JStove
Old posts are like unicorns. You might see them just once, but it’d sure be nice to have...
2014-02-14
623 reads
Photo credit – JStove
Old posts are like unicorns. You might see them just once, but it’d sure be nice to have...
2014-02-14
623 reads
Three months ago, when the few paper calendars that remain on earth flipped over to 2013, ThoughtWorks, a 2,000-employee software...
2014-02-14
406 reads
I have one more thing I want to talk about regarding the conversation I had recently with my friends and...
2014-02-14
1,115 reads
It’s Friday, time to look back at the most popular RealSQLGuy posts of the week. Because it’s Friday and you’re...
2014-02-14
480 reads
Tracking 3,500 stores with your hands tied
One major problem is that Sonic has more than 3,500 stores across the United...
2014-02-14
327 reads
When data entry is strictly defined, it is nice to have data validation list in place, so entries are uniform....
2014-02-14
706 reads
TwitterGoogle+The post Application Data Asset Library appeared first on Derek Wilson - Blog .
2014-02-14
768 reads
I already post an article how to setup Linked Server in SQL Server and querying on linked Server using open...
2014-02-14
77,187 reads
The next location for my ‘Virtualization for SQL Server DBAs’ SQL Saturday preconference training session is Friday, March 28th, in...
2014-02-13
771 reads
I needed to get this one on Hyper-V, so I decided to document the process. I’ve put together a series...
2014-02-13
888 reads
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...
By SQLPals
Why sys.fn_dblog Is Undocumented And Why It's Still There Why sys.fn_dblog...
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