Skip to content

Commit 07b5f80

Browse files
authored
Merge pull request #21727 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to main to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 3887ebd + 2088191 commit 07b5f80

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

docs/database-engine/configure-windows/ad-hoc-distributed-queries-server-configuration-option.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ FROM OPENROWSET('SQLNCLI', 'Server=Seattle1;Trusted_Connection=yes;',
5252
ORDER BY GroupName, Name') AS a;
5353
GO
5454
```
55-
55+
## Azure SQL Database and Azure SQL Managed Instance
56+
See the [Features comparison: Azure SQL Database and Azure SQL Managed Instance](https://docs.microsoft.com/azure/azure-sql/database/features-comparison) for reference.
57+
58+
5659
## See Also
5760
[Server Configuration Options (SQL Server)](../../database-engine/configure-windows/server-configuration-options-sql-server.md)
5861
[Linked Servers (Database Engine)](../../relational-databases/linked-servers/linked-servers-database-engine.md)

docs/ssdt/how-to-debug-stored-procedures.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ This example shows how to create and debug a Transact\-SQL stored procedure by s
2222

2323
> [!WARNING]
2424
> The following procedure uses entities created in procedures in the [Connected Database Development](../ssdt/connected-database-development.md) and [Project-Oriented Offline Database Development](../ssdt/project-oriented-offline-database-development.md) sections.
25+
26+
> [!NOTE]
27+
> Transact\-SQL debugging isn't available for Azure SQL Database or Azure SQL Managed Instance.
2528
2629
### To debug stored procedures
2730

docs/t-sql/functions/context-info-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ If **context_info** was not set:
4646
- [!INCLUDE[ssSDS](../../includes/sssds-md.md)] returns a unique session-specific GUID.
4747

4848
## Remarks
49-
The Multiple Active Result Sets (MARS) feature enables applications to run multiple batches, or requests, at the same time, on the same connection. When one of the MARS connection batches runs SET CONTEXT_INFO, the `CONTEXT_INFO` function returns the new context value, when the `CONTEXT_INFO` function runs in the same batch as the SET statement. If the `CONTEXT_INFO` function runs in one or more of the other connection batches, the `CONTEXT_FUNCTION` does not return the new value unless those batches started after completion of the batch that ran the SET statement.
49+
The Multiple Active Result Sets (MARS) feature enables applications to run multiple batches, or requests, at the same time, on the same connection. When one of the MARS connection batches runs SET CONTEXT_INFO, the `CONTEXT_INFO` function returns the new context value, when the `CONTEXT_INFO` function runs in the same batch as the SET statement. If the `CONTEXT_INFO` function runs in one or more of the other connection batches, the `CONTEXT_INFO` function does not return the new value unless those batches started after completion of the batch that ran the SET statement.
5050

5151
## Permissions
5252
Requires no special permissions. The following system views store the context information, but querying these views directly requires SELECT and VIEW SERVER STATE permissions:

0 commit comments

Comments
 (0)