You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/quickstart-mssql.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: "Quickstart: Create a Durable Functions app that uses the MSSQL storage p
3
3
description: Create a Durable Functions app to use the Microsoft SQL Server (MSSQL) storage provider in Azure Functions.
4
4
author: lilyjma
5
5
ms.topic: quickstart
6
-
ms.date: 05/06/2025
6
+
ms.date: 02/04/2026
7
7
ms.reviewer: azfuncdf
8
8
ms.custom:
9
9
- devx-track-dotnet
@@ -313,7 +313,7 @@ az role assignment create --assignee "$clientId" --role "Storage Blob Data Owner
313
313
az sql server ad-admin create --resource-group $resourceGroup --server-name <SQL_SERVER_NAME> --display-name ADMIN --object-id "$assignee"
314
314
```
315
315
316
-
1. Connect to the SQL database created previously using tools such as [Azure Data Studio](/azure-data-studio/download-azure-data-studio) or [SQL Management Server Studio](/ssms/download-sql-server-management-studio-ssms). Or you can run the following [SQLCMD](/sql/tools/sqlcmd/sqlcmd-utility) command to connect:
316
+
1. Connect to the SQL database created previously using tools such as [SQL Management Server Studio](/ssms/download-sql-server-management-studio-ssms) or [Visual Studio Code](/sql/tools/visual-studio-code-extensions/mssql/mssql-extension-visual-studio-code). Or you can run the following [SQLCMD](/sql/tools/sqlcmd/sqlcmd-utility) command to connect:
@@ -699,7 +699,7 @@ Here's an example local.settings.json file with the optional settings:
699
699
700
700
## Set up change tracking (required)
701
701
702
-
Setting up change tracking for use with the Azure Database for MySQL trigger requires you to add a column in a table by using a function. You can complete these steps from any MySQL tool that supports running queries, including [Visual Studio Code](/sql/tools/visual-studio-code/mssql-extensions) or [Azure Data Studio](/azure-data-studio/download-azure-data-studio).
702
+
Setting up change tracking for use with the Azure Database for MySQL trigger requires you to add a column in a table by using a function. You can complete these steps from any MySQL tool that supports running queries, including [Visual Studio Code](/sql/tools/visual-studio-code-extensions/mssql/mssql-extension-visual-studio-code).
703
703
704
704
Azure Database for MySQL trigger bindings use `az_func_updated_at` and column data to monitor the user table for changes. As such, you need to alter the table structure to allow change tracking on the MySQL table before you use the trigger support. You can enable the change tracking on a table through the following query. For example, enable it on the `Products` table:
@@ -615,7 +615,7 @@ Here is an example local.settings.json file with the optional settings:
615
615
616
616
## Set up change tracking (required)
617
617
618
-
Setting up change tracking for use with the Azure SQL trigger requires two steps. These steps can be completed from any SQL tool that supports running queries, including [Visual Studio Code](/sql/tools/visual-studio-code/mssql-extensions), [Azure Data Studio](/azure-data-studio/download-azure-data-studio) or [SQL Server Management Studio](/sql/ssms/download-sql-server-management-studio-ssms).
618
+
Setting up change tracking for use with the Azure SQL trigger requires two steps. These steps can be completed from any SQL tool that supports running queries, including [Visual Studio Code](/sql/tools/visual-studio-code-extensions/mssql/mssql-extension-visual-studio-code), or [SQL Server Management Studio](/sql/ssms/download-sql-server-management-studio-ssms).
619
619
620
620
1. Enable change tracking on the SQL database, substituting `your database name` with the name of the database where the table to be monitored is located:
Copy file name to clipboardExpand all lines: articles/data-factory/tutorial-incremental-copy-multiple-tables-powershell.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ ms.author: yexu
5
5
author: dearandyxu
6
6
ms.reviewer: douglasl, whhender
7
7
ms.topic: tutorial
8
-
ms.date: 10/03/2024
8
+
ms.date: 02/04/2026
9
9
ms.subservice: data-movement
10
10
ms.custom:
11
11
- devx-track-azurepowershell
@@ -68,9 +68,9 @@ If you don't have an Azure subscription, create a [free](https://azure.microsoft
68
68
69
69
### Create source tables in your SQL Server database
70
70
71
-
1. Open [SQL Server Management Studio (SSMS)](/sql/ssms/download-sql-server-management-studio-ssms) or [Azure Data Studio](/azure-data-studio/download-azure-data-studio), and connect to your SQL Server database.
71
+
1. Open [SQL Server Management Studio (SSMS)](/sql/ssms/download-sql-server-management-studio-ssms) or [Visual Studio Code](/sql/tools/visual-studio-code-extensions/mssql/mssql-extension-visual-studio-code), and connect to your SQL Server database.
72
72
73
-
2. In **Server Explorer (SSMS)** or in the **Connections pane (Azure Data Studio)**, right-click the database and choose **New Query**.
73
+
2. In **Server Explorer (SSMS)** or in the **Connections pane (Visual Studio Code)**, right-click the database and choose **New Query**.
74
74
75
75
3. Run the following SQL command against your database to create tables named `customer_table` and `project_table`:
76
76
@@ -107,9 +107,9 @@ If you don't have an Azure subscription, create a [free](https://azure.microsoft
107
107
108
108
### Create destination tables in your Azure SQL Database
109
109
110
-
1. Open [SQL Server Management Studio (SSMS)](/sql/ssms/download-sql-server-management-studio-ssms) or [Azure Data Studio](/azure-data-studio/download-azure-data-studio), and connect to your SQL Server database.
110
+
1. Open [SQL Server Management Studio (SSMS)](/sql/ssms/download-sql-server-management-studio-ssms) or [Visual Studio Code](/sql/tools/visual-studio-code-extensions/mssql/mssql-extension-visual-studio-code), and connect to your SQL Server database.
111
111
112
-
2. In **Server Explorer (SSMS)** or in the **Connections pane (Azure Data Studio)**, right-click the database and choose **New Query**.
112
+
2. In **Server Explorer (SSMS)** or in the **Connections pane (Visual Studio Code)**, right-click the database and choose **New Query**.
113
113
114
114
3. Run the following SQL command against your database to create tables named `customer_table` and `project_table`:
Copy file name to clipboardExpand all lines: articles/static-web-apps/database-mysql.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: cjk7989
5
5
ms.author: jikunchen
6
6
ms.service: azure-static-web-apps
7
7
ms.topic: tutorial
8
-
ms.date: 03/15/2023
8
+
ms.date: 02/04/2026
9
9
zone_pivot_groups: static-web-apps-api-protocols
10
10
ms.custom: sfi-ropc-nochange
11
11
---
@@ -29,13 +29,13 @@ In this tutorial, you learn to:
29
29
30
30
## Prerequisites
31
31
32
-
To complete this tutorial, you need to have an existing Azure Database for MySQL database and static web app. Additionally, you need to install Azure Data Studio.
32
+
To complete this tutorial, you need to have an existing Azure Database for MySQL database and static web app. Additionally, you need to install Visual Studio Code.
33
33
34
34
| Resource | Description |
35
35
|---|---|
36
36
|[Azure Database for MySQL Flexible Server](/azure/mysql/flexible-server/quickstart-create-server-portal)| If you need to create a database, follow the steps in the [create an Azure Database for MySQL Flexible Server](/azure/mysql/flexible-server/quickstart-create-server-portal) guide. If you plan to use a connection string authentication for your web app, ensure that you create your database with MySQL authentication. You can change this setting later if you want to use managed identity later on. |
37
37
|[Existing static web app](getting-started.md)| If you don't already have one, follow the steps in the [getting started](getting-started.md) guide to create a *No Framework* static web app. |
38
-
|[Azure Data Studio, with the MySQL extension](/azure-data-studio/quickstart-mysql)| If you don't already have Azure Data Studio installed, follow the guide to install [Azure Data Studio, with the MySQL extension](/azure-data-studio/quickstart-mysql). Alternatively, you may use any other tool to query your MySQL database, such as MySQL Workbench. |
38
+
|[Visual Studio Code, with the MySQL Shell extension](https://marketplace.visualstudio.com/items?itemName=Oracle.mysql-shell-for-vs-code)| If you don't already have Visual Studio Code installed, follow the guide to install [Visual Studio Code, with the MySQL Shell extension](https://marketplace.visualstudio.com/items?itemName=Oracle.mysql-shell-for-vs-code). Alternatively, you may use any other tool to query your MySQL database, such as MySQL Workbench. |
39
39
40
40
Begin by configuring your database to work with the Azure Static Web Apps database connection feature.
41
41
@@ -71,9 +71,9 @@ To use your Azure database for local development, you need to retrieve the conne
71
71
72
72
## Create sample data
73
73
74
-
Create a sample table and seed it with sample data to match the tutorial. Here, you can use [Azure Data Studio](/azure-data-studio/quickstart-mysql), but you may use MySQL Workbench or any other tool.
74
+
Create a sample table and seed it with sample data to match the tutorial. Here, you can use [Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=Oracle.mysql-shell-for-vs-code), but you may use MySQL Workbench or any other tool.
75
75
76
-
1. In Azure Data Studio, [create a connection to your Azure MySQL Flexible Server](/azure-data-studio/quickstart-mysql#connect-to-mysql).
76
+
1. In Visual Studio Code with the MySQL Shell extension, create a connection to your Azure MySQL Flexible Server.
77
77
78
78
1. Right-click your server, and create a new database. Enter `MyTestPersonDatabase` as the database name, and select the charset to be `utf8mb4` and the collation of `utf8mb4_0900_ai_ci`.
Copy file name to clipboardExpand all lines: articles/static-web-apps/database-postgresql.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: cjk7989
5
5
ms.author: jikunchen
6
6
ms.service: azure-static-web-apps
7
7
ms.topic: tutorial
8
-
ms.date: 03/15/2023
8
+
ms.date: 02/04/2026
9
9
zone_pivot_groups: static-web-apps-api-protocols
10
10
ms.custom: sfi-ropc-nochange
11
11
---
@@ -29,13 +29,13 @@ In this tutorial, you learn to:
29
29
30
30
## Prerequisites
31
31
32
-
To complete this tutorial, you need to have an existing Azure Database for PostgreSQL Flexible Server or Single Server and static web app. Additionally, you need to install Azure Data Studio.
32
+
To complete this tutorial, you need to have an existing Azure Database for PostgreSQL Flexible Server or Single Server and static web app. Additionally, you need to install Visual Studio Code.
33
33
34
34
| Resource | Description |
35
35
|---|---|
36
36
|[Azure Database for PostgreSQL Flexible Server](/azure/postgresql/flexible-server/quickstart-create-server-portal) or [Azure Database for PostgreSQL Single Server Database](/azure/postgresql/single-server/quickstart-create-server-database-portal)| If you don't already have one, follow the steps in the [create an Azure Database for PostgreSQL Flexible Server database](/azure/postgresql/flexible-server/quickstart-create-server-portal) guide, or in the [create an Azure Database for PostgreSQL Single Server database](/azure/postgresql/single-server/quickstart-create-server-database-portal) guide. If you plan to use a connection string authentication for Static Web Apps' database connections, ensure that you create your Azure Database for PostgreSQL Server with PostgreSQL authentication. You can change this value if you want to use managed identity later on. |
37
37
|[Existing static web app](getting-started.md)| If you don't already have one, follow the steps in the [getting started](getting-started.md) guide to create a *No Framework* static web app. |
38
-
|[Azure Data Studio, with the PostgreSQL extension](/azure-data-studio/quickstart-postgres)| If you don't already have Azure Data Studio installed, follow the guide to install [Azure Data Studio, with the PostgreSQL extension](/azure-data-studio/quickstart-postgres). Alternatively, you may use any other tool to query your PostgreSQL database, such as PgAdmin. |
38
+
|[Visual Studio Code, with the PostgreSQL extension](/azure-data-studio/quickstart-postgres)| If you don't already have Visual Studio Code installed, follow the guide to install [Visual Studio Code, with the PostgreSQL extension](/azure/postgresql/developer/vs-code-extension/vs-code-connect). Alternatively, you may use any other tool to query your PostgreSQL database, such as PgAdmin. |
39
39
40
40
Begin by configuring your database to work with the Azure Static Web Apps database connection feature.
41
41
@@ -71,9 +71,9 @@ To use your Azure database for local development, you need to retrieve the conne
71
71
72
72
## Create sample data
73
73
74
-
Create a sample table and seed it with sample data to match the tutorial. This tutorial uses [Azure Data Studio](/azure-data-studio/quickstart-postgres), but you may use PgAdmin or any other tool.
74
+
Create a sample table and seed it with sample data to match the tutorial. This tutorial uses [Visual Studio Code](/azure/postgresql/developer/vs-code-extension/vs-code-connect), but you may use PgAdmin or any other tool.
75
75
76
-
1. In Azure Data Studio, [create a connection to your Azure Database for PostgreSQL Server](/azure-data-studio/quickstart-postgres#connect-to-postgresql)
76
+
1. In Visual Studio Code, [create a connection to your Azure Database for PostgreSQL Server](/azure/postgresql/developer/vs-code-extension/vs-code-connect)
77
77
78
78
1. Right-click your server, and select **New Query**. Run the following querying to create a database named `MyTestPersonDatabase`.
0 commit comments