Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit d2e8e4e

Browse files
Merge pull request #35670 from MicrosoftDocs/main
Auto Publish – main to live - 2025-10-28 22:30 UTC
2 parents 70f0b0a + ad010c3 commit d2e8e4e

90 files changed

Lines changed: 449 additions & 491 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

azure-sql/database/always-encrypted-landing.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,6 @@ landingContent:
100100
links:
101101
- text: Query columns using Always Encrypted with SQL Server Management Studio
102102
url: /sql/relational-databases/security/encryption/always-encrypted-query-columns-ssms
103-
- text: Query columns using Always Encrypted with Azure Data Studio
104-
url: /sql/relational-databases/security/encryption/always-encrypted-query-columns-ads
105103

106104

107105
# Card

azure-sql/database/authentication-azure-ad-logins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ For a tutorial on how to grant these roles, see [Tutorial: Create and utilize Mi
133133
- Changing permissions on specific Microsoft Entra login object isn't supported:
134134
- `GRANT <PERMISSION> ON LOGIN :: <Microsoft Entra account> TO <Any other login> `
135135
- When you alter permissions for a Microsoft Entra login, by default the changes only take effect the next time the login connects to the Azure SQL Database. Any existing open connections with the login aren't affected. To force permissions changes to take immediate effect, you can manually clear the authentication and TokenAndPermUserStore, as described earlier in [disable or enable a login using ALTER LOGIN](#disable-or-enable-a-login-using-alter-login). This behavior also applies when making server role membership changes with [ALTER SERVER ROLE](/sql/t-sql/statements/alter-server-role-transact-sql).
136-
- In SQL Server Management Studio and Azure Data Studio, the scripting command to create a user doesn't check if there's already a Microsoft Entra login in `master` with the same name. It always generates the T-SQL for a contained database Microsoft Entra user.
136+
- In SQL Server Management Studio, the scripting command to create a user doesn't check if there's already a Microsoft Entra login in `master` with the same name. It always generates the T-SQL for a contained database Microsoft Entra user.
137137
- An error might occur if you're trying to create a login or user from a service principal with a nonunique display name. For more information about mitigating this error, see [Microsoft Entra logins and users with nonunique display names](authentication-microsoft-entra-create-users-with-nonunique-names.md).
138138
- In Azure SQL Database and Azure Synapse Analytics, database users created using Microsoft Entra logins can experience delays when being granted roles and permissions. As this feature is still in public preview, the following commands should be used to address these issues.
139139
- [Drop the user](/sql/t-sql/statements/drop-user-transact-sql) from the user database.

azure-sql/database/azure-sql-python-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ The app is ready to be deployed to Azure.
275275

276276
In the [Configure the database](#configure-the-database) section, you configured networking and Microsoft Entra authentication for the Azure SQL database server. In this section, you complete the database configuration and configure the App Service with a connection string to access the database server.
277277

278-
To run these commands you can use any tool or IDE that can connect to Azure SQL Database, including [SQL Server Management Studio (SSMS)](/sql/ssms/download-sql-server-management-studio-ssms), [Azure Data Studio](/azure-data-studio/what-is-azure-data-studio), and Visual Studio Code with the [SQL server mssql](https://marketplace.visualstudio.com/items?itemName=ms-mssql.mssql) extension. As well, you can use the Azure portal as described in [Quickstart: Use the Azure portal query editor to query Azure SQL Database](/azure/azure-sql/database/connect-query-portal).
278+
To run these commands you can use any tool or IDE that can connect to Azure SQL Database, including [SQL Server Management Studio (SSMS)](/ssms/sql-server-management-studio-ssms), and Visual Studio Code with the [MSSQL extension](/sql/tools/visual-studio-code-extensions/mssql/mssql-extension-visual-studio-code). You can also use the Azure portal as described in [Quickstart: Use the Azure portal query editor to query Azure SQL Database](/azure/azure-sql/database/connect-query-portal).
279279

280280
1. Add a user to the Azure SQL Database with SQL commands to create a user and role for passwordless access.
281281

azure-sql/database/change-data-capture-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ For databases in the [DTU purchasing model](resource-limits-dtu-single-databases
5757

5858
Before you can create a capture instance for individual tables, you must enable CDC for your Azure SQL Database.
5959

60-
To enable CDC, connect to your Azure SQL Database through Azure Data Studio or SQL Server Management Studio (SSMS). Open a new query window, then enable CDC by running the following T-SQL:
60+
To enable CDC, connect to your Azure SQL Database through SQL Server Management Studio (SSMS). Open a new query window, then enable CDC by running the following T-SQL:
6161

6262
```sql
6363
EXEC sys.sp_cdc_enable_db;

azure-sql/database/connect-query-content-reference-guide.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ Watch this video in the [Azure SQL Database essentials series](/shows/azure-sql-
3131
| Quickstart | Description |
3232
| --- | --- |
3333
| [SQL Server Management Studio](connect-query-ssms.md) (SSMS) | This quickstart demonstrates how to use SSMS to connect to a database, and then use Transact-SQL statements to query, insert, update, and delete data in the database. |
34-
| [Azure Data Studio](/azure-data-studio/quickstart-sql-database?toc=%2fazure%2fsql-database%2ftoc.json) | This quickstart demonstrates how to use Azure Data Studio to connect to a database, and then use Transact-SQL (T-SQL) statements to create the `TutorialDB` used in Azure Data Studio tutorials. |
3534
| [Azure portal](connect-query-portal.md) | This quickstart demonstrates how to use the [query editor](query-editor.md) to connect to a database (Azure SQL Database only), and then use Transact-SQL statements to query, insert, update, and delete data in the database. |
3635
| [Visual Studio Code](connect-query-vscode.md) | This quickstart demonstrates how to use Visual Studio Code to connect to a database, and then use Transact-SQL statements to query, insert, update, and delete data in the database. |
3736
| [.NET with Visual Studio](connect-query-dotnet-visual-studio.md) | This quickstart demonstrates how to use the .NET framework to create a C# program with Visual Studio to connect to a database and use Transact-SQL statements to query data. |

azure-sql/database/connect-query-dotnet-core.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,7 @@ Remember to replace `<your_server.database.windows.net>`, `<your_username>`, `<p
151151
## Related content
152152
153153
- [Tutorial: Create a .NET console application using Visual Studio Code](/dotnet/core/tutorials/with-visual-studio-code)
154-
- [connect to Azure SQL Database using Azure Data Studio on Windows/Linux/macOS](/azure-data-studio/quickstart-sql-database)
155-
- [developing with .NET and SQL](/sql/connect/ado-net/sql)
156-
- [connect and query Azure SQL Database or Azure SQL Managed Instance, by using .NET in Visual Studio](connect-query-dotnet-visual-studio.md)
157-
- [Design your first database with SSMS](design-first-database-tutorial.md)
154+
- [SQL Server and ADO.NET](/sql/connect/ado-net/sql)
155+
- [Quickstart: Connect to and query a database with .NET and C# in Visual Studio](connect-query-dotnet-visual-studio.md)
156+
- [Tutorial: Design a relational database in Azure SQL Database](design-first-database-tutorial.md)
158157
- [.NET documentation](/dotnet/)

azure-sql/database/connect-query-portal.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ Connect to your database within the query editor.
8080

8181
You can also connect to your Azure SQL database using other tools, including:
8282

83-
- [Quickstart: Use Azure Data Studio to connect and query Azure SQL Database](/azure-data-studio/quickstart-sql-database)
8483
- [Quickstart: Use SSMS to connect to and query Azure SQL Database or Azure SQL Managed Instance](connect-query-ssms.md?view=azuresql-db&preserve-view=true)
8584
- [Quickstart: Use Visual Studio Code to connect and query](connect-query-vscode.md?view=azuresql-db&preserve-view=true)
8685

azure-sql/database/database-import.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ You can also use these wizards.
188188

189189
## Related content
190190

191-
- To learn how to connect to and query Azure SQL Database from Azure Data Studio, see [Quickstart: Use Azure Data Studio to connect and query Azure SQL Database](/azure-data-studio/quickstart-sql-database).
192191
- To learn how to connect to and query a database in Azure SQL Database, see [Quickstart: Azure SQL Database: Use SQL Server Management Studio to connect to and query data](connect-query-ssms.md).
193192
- For a SQL Server Customer Advisory Team blog about migrating using .bacpac files, see [Migrating from SQL Server to Azure SQL Database using BACPAC Files](https://techcommunity.microsoft.com/t5/DataCAT/Migrating-from-SQL-Server-to-Azure-SQL-Database-using-Bacpac/ba-p/305407).
194193
- For a discussion of the entire SQL Server database migration process, including performance recommendations, see [SQL Server database migration to Azure SQL Database](migrate-to-database-from-sql-server.md).

azure-sql/database/design-first-database-tutorial.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ Azure SQL Database is a relational database-as-a-service (DBaaS) in the Microsof
3030
## Prerequisites
3131

3232
- Use [SQL Server Management Studio](/sql/ssms/sql-server-management-studio-ssms) (latest version) or the [Azure portal query editor for Azure SQL Database](query-editor.md).
33-
- You can also follow this same tutorial using [Azure Data Studio (ADS)](design-first-database-azure-data-studio.md).
3433
- [BCP and SQLCMD](https://www.microsoft.com/download/details.aspx?id=36433) (latest version).
3534
- If you don't have an Azure subscription, [create a free account](https://azure.microsoft.com/pricing/purchase-options/azure-account?icid=azurefreeaccount) before you begin.
3635
- If you don't already have an Azure SQL Database created, visit [Quickstart: Create a single database - Azure SQL Database](single-database-create-quickstart.md). Look for the option to use your offer to [Deploy Azure SQL Database for free](free-offer.md).
@@ -254,7 +253,6 @@ This query joins all four tables and finds the courses in which 'Noe Coleman' ha
254253
255254
## Related content
256255

257-
- [Tutorial: Design a relational database in Azure SQL Database using Azure Data Studio (ADS)](design-first-database-azure-data-studio.md)
258256
- [Deploy Azure SQL Database for free](free-offer.md)
259257
- [What's new in Azure SQL Database?](doc-changes-updates-release-notes-whats-new.md)
260258
- [Configure and manage content reference - Azure SQL Database](how-to-content-reference-guide.md)

azure-sql/database/doc-changes-updates-release-notes-whats-new-archive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Return to [What's new in Azure SQL Database?](doc-changes-updates-release-notes-
140140
| **JavaScript & Python bindings** | Support for JavaScript and Python SQL bindings for Azure Functions is currently in preview. For more information, see [Azure SQL bindings for Azure Functions](/azure/azure-functions/functions-bindings-azure-sql). |
141141
| **Local development experience** | The Azure SQL Database local development experience is a combination of tools and procedures that empowers application developers and database professionals to design, edit, build/validate, publish, and run database schemas for databases directly on their workstation using an Azure SQL Database containerized environment. For more information, see [Local development experience for Azure SQL Database](local-dev-experience-overview.md). |
142142
| **SQL Database emulator** | The Azure SQL Database emulator provides the ability to locally validate database and query design together with client application code in a simple and frictionless model as part of the application development process. The SQL Database emulator is currently in preview. For more information, see [SQL Database emulator](local-dev-experience-sql-database-emulator.md). |
143-
| **SDK-style SQL projects** | Use [Microsoft.Build.Sql](https://www.nuget.org/packages/Microsoft.Build.Sql) for SDK-style SQL projects in the SQL Database Projects extension in Azure Data Studio or Visual Studio Code. This feature is currently in preview. For more information, see [SDK-style SQL projects](/azure-data-studio/extensions/sql-database-project-extension-sdk-style-projects). |
143+
| **SDK-style SQL projects** | Use [Microsoft.Build.Sql](https://www.nuget.org/packages/Microsoft.Build.Sql) for SDK-style SQL projects in the SQL Database Projects extension in Visual Studio Code. This feature is currently in preview. For more information, see [SDK-style SQL projects](/azure-data-studio/extensions/sql-database-project-extension-sdk-style-projects). |
144144
| **Azure Synapse Link for SQL for Azure SQL Database** | Azure Synapse Link for SQL enables near real-time analytics over operational data in SQL Server 2022 and Azure SQL Database. With a seamless integration between operational stores and Azure Synapse Analytics dedicated SQL pools, Azure Synapse Link for SQL enables you to run analytics, business intelligence, and machine learning scenarios on your operational data with minimum impact on source databases with a new change feed technology. For more information, see [What is Azure Synapse Link for SQL? (Preview)](/azure/synapse-analytics/synapse-link/sql-synapse-link-overview). |
145145
| **General Purpose tier Zone redundancy GA** | Enabling zone redundancy for your provisioned and serverless General Purpose databases and elastic pools is now generally available in select regions. For more information, including region availability, see [General Purpose zone redundancy](high-availability-sla-local-zone-redundancy.md#zone-redundant-availability). |
146146
| **Change data capture GA** | Change data capture (CDC) lets you track all the changes that occur on a database. Though this feature has been available for SQL Server for quite some time, using it with Azure SQL Database is now generally available. For more information, see [Change data capture](/sql/relational-databases/track-changes/about-change-data-capture-sql-server). |

0 commit comments

Comments
 (0)