2023-09-18
294 reads
2023-09-18
294 reads
This article looks at deploying SQL Server on an Azure VM from Azure Data Studio.
2023-05-24
1,537 reads
Learn how to use Python code with Azure Data Studio to work with SQL Server data.
2022-10-03
14,451 reads
Learn how to build graph node and edge tables using Azure Data Studio in this step-by-step guide.
2022-09-19
Learn how to get started with Git and avoid the command line by using VS Code or Azure Data Studio.
2022-05-11
5,028 reads
This article examines how you can use Azure Data Studio with your git Version Control System.
2022-04-29
8,700 reads
Introduction to Query history and server reports i...
2022-03-14
9,886 reads
Learn how to use Azure Data Studio to access a Central Management Server.
2022-03-07
2,692 reads
Learn about the Schema Compare feature in Azure Data Studio.
2022-02-21
10,452 reads
2022-02-14
4,622 reads
By SQLPals
Why sys.fn_dblog Is Undocumented And Why It's Still There Why sys.fn_dblog...
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...
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