2023-09-18
276 reads
2023-09-18
276 reads
This article looks at deploying SQL Server on an Azure VM from Azure Data Studio.
2023-05-24
1,510 reads
Learn how to use Python code with Azure Data Studio to work with SQL Server data.
2022-10-03
14,375 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
4,954 reads
This article examines how you can use Azure Data Studio with your git Version Control System.
2022-04-29
8,594 reads
Introduction to Query history and server reports i...
2022-03-14
9,756 reads
Learn how to use Azure Data Studio to access a Central Management Server.
2022-03-07
2,657 reads
Learn about the Schema Compare feature in Azure Data Studio.
2022-02-21
10,055 reads
2022-02-14
4,585 reads
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers