Skip to content

Commit 159b5b9

Browse files
Merge pull request #311386 from rwestMSFT/patch-1
Remove Azure Data Studio mentions
2 parents ec84d89 + a75873c commit 159b5b9

6 files changed

Lines changed: 21 additions & 21 deletions

File tree

articles/azure-functions/durable/quickstart-mssql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Quickstart: Create a Durable Functions app that uses the MSSQL storage p
33
description: Create a Durable Functions app to use the Microsoft SQL Server (MSSQL) storage provider in Azure Functions.
44
author: lilyjma
55
ms.topic: quickstart
6-
ms.date: 05/06/2025
6+
ms.date: 02/04/2026
77
ms.reviewer: azfuncdf
88
ms.custom:
99
- devx-track-dotnet
@@ -313,7 +313,7 @@ az role assignment create --assignee "$clientId" --role "Storage Blob Data Owner
313313
az sql server ad-admin create --resource-group $resourceGroup --server-name <SQL_SERVER_NAME> --display-name ADMIN --object-id "$assignee"
314314
```
315315
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:
317317
```bash
318318
sqlcmd -S <SQL_SERVER_NAME>.database.windows.net -d <DATABASE_NAME> -U <[email protected]> -P "ACCOUNT_PASSWORD" -G -l 30
319319
```

articles/azure-functions/functions-bindings-azure-mysql-trigger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom:
99
- devx-track-js
1010
- devx-track-python
1111
- ignite-2023
12-
ms.date: 10/03/2025
12+
ms.date: 02/04/2026
1313
ms.author: bspendolini
1414
ms.reviewer: glenga
1515
zone_pivot_groups: programming-languages-set-functions-lang-workers
@@ -699,7 +699,7 @@ Here's an example local.settings.json file with the optional settings:
699699

700700
## Set up change tracking (required)
701701

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).
703703

704704
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:
705705

articles/azure-functions/functions-bindings-azure-sql-trigger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom:
99
- devx-track-js
1010
- devx-track-python
1111
- ignite-2023
12-
ms.date: 4/23/2025
12+
ms.date: 02/04/2026
1313
ms.author: bspendolini
1414
ms.reviewer: glenga
1515
zone_pivot_groups: programming-languages-set-functions-lang-workers
@@ -615,7 +615,7 @@ Here is an example local.settings.json file with the optional settings:
615615

616616
## Set up change tracking (required)
617617

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).
619619

620620
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:
621621

articles/data-factory/tutorial-incremental-copy-multiple-tables-powershell.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.author: yexu
55
author: dearandyxu
66
ms.reviewer: douglasl, whhender
77
ms.topic: tutorial
8-
ms.date: 10/03/2024
8+
ms.date: 02/04/2026
99
ms.subservice: data-movement
1010
ms.custom:
1111
- devx-track-azurepowershell
@@ -68,9 +68,9 @@ If you don't have an Azure subscription, create a [free](https://azure.microsoft
6868

6969
### Create source tables in your SQL Server database
7070

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.
7272

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**.
7474

7575
3. Run the following SQL command against your database to create tables named `customer_table` and `project_table`:
7676

@@ -107,9 +107,9 @@ If you don't have an Azure subscription, create a [free](https://azure.microsoft
107107

108108
### Create destination tables in your Azure SQL Database
109109

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.
111111

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**.
113113

114114
3. Run the following SQL command against your database to create tables named `customer_table` and `project_table`:
115115

articles/static-web-apps/database-mysql.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: cjk7989
55
ms.author: jikunchen
66
ms.service: azure-static-web-apps
77
ms.topic: tutorial
8-
ms.date: 03/15/2023
8+
ms.date: 02/04/2026
99
zone_pivot_groups: static-web-apps-api-protocols
1010
ms.custom: sfi-ropc-nochange
1111
---
@@ -29,13 +29,13 @@ In this tutorial, you learn to:
2929
3030
## Prerequisites
3131

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.
3333

3434
| Resource | Description |
3535
|---|---|
3636
| [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. |
3737
| [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. |
3939

4040
Begin by configuring your database to work with the Azure Static Web Apps database connection feature.
4141

@@ -71,9 +71,9 @@ To use your Azure database for local development, you need to retrieve the conne
7171

7272
## Create sample data
7373

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.
7575

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.
7777

7878
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`.
7979

articles/static-web-apps/database-postgresql.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: cjk7989
55
ms.author: jikunchen
66
ms.service: azure-static-web-apps
77
ms.topic: tutorial
8-
ms.date: 03/15/2023
8+
ms.date: 02/04/2026
99
zone_pivot_groups: static-web-apps-api-protocols
1010
ms.custom: sfi-ropc-nochange
1111
---
@@ -29,13 +29,13 @@ In this tutorial, you learn to:
2929
3030
## Prerequisites
3131

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.
3333

3434
| Resource | Description |
3535
|---|---|
3636
| [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. |
3737
| [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. |
3939

4040
Begin by configuring your database to work with the Azure Static Web Apps database connection feature.
4141

@@ -71,9 +71,9 @@ To use your Azure database for local development, you need to retrieve the conne
7171

7272
## Create sample data
7373

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.
7575

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)
7777

7878
1. Right-click your server, and select **New Query**. Run the following querying to create a database named `MyTestPersonDatabase`.
7979

0 commit comments

Comments
 (0)