SQL Database Projects extension
Database source control where objects are stored as code, integrating with build-time validation and dynamically calculated deployments for database DevOps. Cross-platform and compatible with Visual Studio SQL Server Data Tools (SSDT) for SQL Server, Azure SQL, and Fabric SQL.
Overview
SQL Database Projects for Azure Data Studio and VS Code provides a way to design, edit, and publish objects to SQL databases from a source controlled project. For a complete development workflow, build and deploy your database projects in CI/CD pipelines, such as GitHub Actions or Azure DevOps.

📕 Learn more about SQL Database Projects in the documentation: https://aka.ms/sqlprojects
Requirements
The extension will prompt to install the .NET SDK if it is not found, as it is required to build SQL projects. You can also install the .NET SDK manually from here for Windows, macOS, and Linux.
Quick start
- Create a new database project by going to the Database Projects view or by searching for Database Projects: New in the command palette.
- Add
.sql files to the project to define database objects. For example, creating a file Product.sql in the SQL project folder to add a table named Product:
CREATE TABLE [dbo].[Product](https://github.com/Microsoft/vscode-mssql/blob/HEAD/
[ProductID] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,
[ProductName] [nvarchar](https://github.com/Microsoft/vscode-mssql/blob/HEAD/200) NOT NULL
);
- Build the SQL project to validate the SQL syntax and object references. In the Database Projects view, right-click the database project's root node and select Build.
- Building the project created a
.dacpac file in the output folder. This file contains the schema of the database project and can be deployed to a SQL Server or Azure SQL instance.
📕 Dive in further with this complete tutorial for creating and deploying a SQL project.

Features
Preview Features
- Generate SQL projects from OpenAPI/Swagger specs
Settings
General Settings
sqlDatabaseProjects.dotnetSDK Location: The path to the folder containing the dotnet folder for the .NET SDK. If not set, the extension will attempt to find the .NET SDK on the system.
sqlDatabaseProjects.microsoftBuildSqlVersion: Version of Microsoft.Build.Sql to use for SQL projects. Controls the SDK version referenced in newly created SDK-style project templates and the binaries used when building non-SDK-style SQL projects. If not set, the extension will use Microsoft.Build.Sql 2.1.0.
sqlDatabaseProjects.netCoreDoNotAsk: When true, no longer prompts to install .NET SDK when a supported installation is not found.
sqlDatabaseProjects.collapseProjectNodes: Option to set the default state of the project nodes in the database projects view to collapsed. If not set, the extension will default to expanded.
AutoRest Settings (preview)
sqlDatabaseProjects.nodejsDoNotAsk: When true, no longer prompts to install Node.js when a supported installation is not found.
sqlDatabaseProjects.autorestSqlVersion: Version of AutoRest.sql to use for generating SQL projects from OpenAPI/Swagger specs. If not set, the extension will use the latest version.
Code of Conduct
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Telemetry
This extensions collects telemetry data, which is used to help understand how to improve the product. For example, this usage data helps to debug issues, such as slow start-up times, and to prioritize new features. While we appreciate the insights this data provides, we also know that not everyone wants to send usage data and you can disable telemetry as described here for Azure Data Studio or here for VS Code.
Privacy Statement
To learn more about our Privacy Statement visit this link.
Feedback
Please report issues and feature requests here.
License
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License.