SQL Server 2014 Install – Step by Step
Hot cake for the day is SQLServer 2014 RTM bits. Its generally available starting today, and I downloaded a fresh...
2014-04-01
19,249 reads
Hot cake for the day is SQLServer 2014 RTM bits. Its generally available starting today, and I downloaded a fresh...
2014-04-01
19,249 reads
If you are working with .Net then you will be aware about PDB files.A PDB file is a Program Database,that is...
2014-04-01
732 reads
A few notes from our trip to Madison for SQL Saturday. We arrived two days early and acted like tourist...
2014-04-01
765 reads
As has been well publicized, today is the official Release To Manufacturing date for SQL Server 2014. You can read more about all of that here. Something that hasn’t...
2014-04-01
8 reads
As has been well publicized, today is the official Release To Manufacturing date for SQL Server 2014. You can read...
2014-04-01
931 reads
It’s a little over a week until this year’s SQL Saturday festivities kick off in Lisbon, Portugal, and I’m very...
2014-04-01
720 reads
Many people have published SQL Server installation checklists before. Here is one I have been using for several installations without...
2014-04-01
20,807 reads
When I first heard this, it struck me as being a remarkably concise wisdom applicable to virtually any programming task....
2014-04-01
1,197 reads
Microsoft has announced that SQL 2014 was in fact an elaborate April Fool’s joke and that Microsoft intends to move...
2014-04-01
412 reads
Microsoft has announced that SQL 2014 was in fact an elaborate April Fool’s joke and that Microsoft intends to move...
2014-04-01
869 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