XML Support and SQL Server (Part 4)
Checkout the fourth part of my XML support and SQL Server article series here.
In this part, I talked about XML...
2013-02-23
845 reads
Checkout the fourth part of my XML support and SQL Server article series here.
In this part, I talked about XML...
2013-02-23
845 reads
Today, I received an email from the development team complaining why they have not received any of the SQL Agent...
2013-02-11
4,503 reads
Checkout the third part of my XML support and SQL Server article series here.
In this part, I talked about the...
2013-02-11
692 reads
This is the second part of the three part article series on partitioning relational data.
In the first part of this...
2013-02-05
713 reads
From time to time, I see the following question posted on various SQL forums asking how we can determine the...
2013-01-14
4,389 reads
A common requirement for dealing with large datasets is the ability to split the data into smaller blocks to help...
2013-01-08
1,023 reads
When creating XML documents, you must work from a design that defines the structure of the document. This strengthens the...
2013-01-08
1,002 reads
You can use the sp_spaceused system-stored procedure to return space usage information about a database or a table within a...
2013-01-02
1,518 reads
Beginning with SQL Server 2005, Microsoft introduced a new feature called database snaphots, which gives DBAs a way of presenting...
2012-12-11
887 reads
Today, I received a phone call from a friend who is thinking to downgrade the database hosted in SQL Server...
2012-12-11
677 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