Skip to content

Commit 3074709

Browse files
Merge pull request #34618 from MicrosoftDocs/main
Merged by Learn.Build PR Management system
2 parents 86acd84 + e5b7db9 commit 3074709

27 files changed

Lines changed: 80 additions & 15 deletions

docs/database-engine/configure-windows/server-configuration-options-sql-server.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ The following table lists all available configuration options, the range of poss
106106
| [affinity64 mask](affinity64-mask-server-configuration-option.md) (A) | **Minimum**: `-2147483648`<br />**Maximum**: `2147483647`<br />**Default**: `0` | Yes (64-bit only) | No |
107107
| [Agent XPs](agent-xps-server-configuration-option.md) (A) <sup>1</sup> | **Minimum**: `0`<br />**Maximum**: `1`<br />**Default**: `0` | Yes | No |
108108
| [allow polybase export](allow-polybase-export.md) | **Minimum**: `0`<br />**Maximum**: `1`<br />**Default**: `0` | [!INCLUDE [sssql16-md](../../includes/sssql16-md.md)] and later versions | No |
109+
| allow server scoped db credentials | **Minimum**: `0`<br />**Maximum**: `1`<br />**Default**: `0` | [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)] and later versions | No |
109110
| [allow updates](allow-updates-server-configuration-option.md)<br /><br />**Warning:** Obsolete. Don't use. Causes an error during reconfigure. | **Minimum**: `0`<br />**Maximum**: `1`<br />**Default**: `0` | Yes | No |
110111
| [automatic soft-NUMA disabled](soft-numa-sql-server.md) (A, RR) | **Minimum**: `0`<br />**Maximum**: `1`<br />**Default**: `0` | Yes | Yes |
111112
| [availability group commit time (ms)](availability-group-commit-time-server-configuration-options.md) | **Minimum**: `0`<br />**Maximum**: `10`<br />**Default**: `0` | [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)] and later versions | No |

docs/relational-databases/fuzzy-string-match/overview.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Use fuzzy, or approximate, string matching to check if two strings are similar,
2020
> [!NOTE]
2121
> - Fuzzy string matching is currently in preview.
2222
> - SQL Server support for fuzzy string matching introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
23+
> - Fuzzy string matching is available in Azure SQL Managed Instance configured with the [Always-up-to-date](/azure/azure-sql/managed-instance/update-policy#always-up-to-date-update-policy) update policy.
2324
2425

2526
## Fuzzy functions

docs/relational-databases/regular-expressions/overview.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ This article introduces regular expressions for SQL Server.
2727

2828
A regular expression, or regex, is a sequence of characters that defines a search pattern for text. Regex is commonly used for a variety of tasks including pattern matching, data validation, data transformation, and querying. It offers a flexible and an efficient way to search, manipulate, and handle complex data operations.
2929

30+
> [!NOTE]
31+
> Regular expressions are available in Azure SQL Managed Instance configured with the [Always-up-to-date](/azure/azure-sql/managed-instance/update-policy#always-up-to-date-update-policy) update policy.
32+
3033
This implementation of regular expression is based on the [RE2 regular expression library](https://github.com/google/re2/). For more information, visit [RE2 Regular Expression Syntax](https://cran.r-project.org/web/packages/re2/vignettes/re2_syntax.html#:~:text=The%20simplest%20regular%20expression%20is,matches%20a%20literal%20plus%20character).
3134

3235
For example:

docs/relational-databases/track-changes/change-event-streaming/configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ The examples in this section demonstrate how to enable CES for the AMQP protocol
205205
The following are sample parameter values for the examples in this section:
206206

207207
- `@stream_group_name = N'myStreamGroup'`
208-
- `@destination_location = 'N'myEventHubsNamespace.servicebus.windows.net/myEventHubsInstance'`
208+
- `@destination_location = N'myEventHubsNamespace.servicebus.windows.net/myEventHubsInstance'`
209209
- `@partition_key_scheme = N'None'`
210210
- Primary or secondary key value: `Secret = 'BVFnT3baC/K6I8xNZzio4AeoFt6nHeK0i+ZErNGsxiw='`
211211
- `EXEC sys.sp_add_object_to_event_stream_group N'myStreamGroup', N'dbo.myTable'`

docs/sql-server/what-s-new-in-sql-server-2025.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ In addition to features announced previously, CTP 2.1 adds the following changes
7070
- Setup and feature integration available beginning with this release. Review [Feature availability by version](azure-arc/overview.md#feature-availability-by-version) for details.
7171
- [Manage automatic connection for SQL Server enabled by Azure Arc](azure-arc/manage-autodeploy.md).
7272
- [Connect your SQL Server to Azure Arc](azure-arc/connect.md).
73-
73+
- Added new database server configuration option `allow server scoped db credentials` to allow SQL Server enabled by Azure Arc to use server level Managed Identities.
7474
- Reporting Services:
7575

7676
- [!INCLUDE [ssrs-power-bi-consolidation](../reporting-services/includes/ssrs-power-bi-consolidation.md)]

docs/t-sql/functions/dateadd-transact-sql.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ This function adds a *number* (a signed integer) to a *datepart* of an input *da
3333

3434
See [Date and time data types and functions](date-and-time-data-types-and-functions-transact-sql.md) for an overview of all [!INCLUDE [tsql](../../includes/tsql-md.md)] date and time data types and functions.
3535

36+
> [!NOTE]
37+
> `DATEADD` is available in Azure SQL Managed Instance configured with the [Always-up-to-date](/azure/azure-sql/managed-instance/update-policy#always-up-to-date-update-policy) update policy.
38+
39+
3640
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: [Transact-SQL syntax conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
3741

3842
## Syntax

docs/t-sql/functions/edit-distance-similarity-transact-sql.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ ms.custom:
2424
Calculates a similarity value ranging from 0 (indicating no match) to 100 (indicating full match).
2525

2626
> [!NOTE]
27-
> - EDIT_DISTANCE_SIMILARITY is currently in preview.
28-
> - SQL Server support for EDIT_DISTANCE_SIMILARITY introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
27+
> - `EDIT_DISTANCE_SIMILARITY` is currently in preview.
28+
> - SQL Server support for `EDIT_DISTANCE_SIMILARITY` introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
29+
> - `EDIT_DISTANCE_SIMILARITY` is available in Azure SQL Managed Instance configured with the [Always-up-to-date](/azure/azure-sql/managed-instance/update-policy#always-up-to-date-update-policy) update policy.
2930
3031
## Syntax
3132

docs/t-sql/functions/edit-distance-transact-sql.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ ms.custom:
2424
Calculates the number of insertions, deletions, substitutions, and transpositions needed to transform one string to another.
2525

2626
> [!NOTE]
27-
> - EDIT_DISTANCE is currently in preview.
28-
> - SQL Server support for EDIT_DISTANCE introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
27+
> - `EDIT_DISTANCE` is currently in preview.
28+
> - SQL Server support for `EDIT_DISTANCE` introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
29+
> - `EDIT_DISTANCE` is available in Azure SQL Managed Instance configured with the [Always-up-to-date](/azure/azure-sql/managed-instance/update-policy#always-up-to-date-update-policy) update policy.
2930
3031
## Syntax
3132

docs/t-sql/functions/jaro-winkler-distance-transact-sql.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ ms.custom:
2424
Calculates the edit distance between two strings giving preference to strings that match from the beginning for a set prefix length.
2525

2626
> [!NOTE]
27-
> - JARO_WINKLER_DISTANCE is currently in preview.
28-
> - SQL Server support for JARO_WINKLER_DISTANCE introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
27+
> - `JARO_WINKLER_DISTANCE` is currently in preview.
28+
> - SQL Server support for `JARO_WINKLER_DISTANCE` introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
29+
> - `JARO_WINKLER_DISTANCE` is available in Azure SQL Managed Instance configured with the [Always-up-to-date](/azure/azure-sql/managed-instance/update-policy#always-up-to-date-update-policy) update policy.
2930
3031
## Syntax
3132

docs/t-sql/functions/jaro-winkler-similarity-transact-sql.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ ms.custom:
2424
Calculates a similarity value ranging from 0 (indicating no match) to 1 (indicating full match).
2525

2626
> [!NOTE]
27-
> - JARO_WINKLER_SIMILARITY is currently in preview.
28-
> - SQL Server support for JARO_WINKLER_SIMILARITY introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
27+
> - `JARO_WINKLER_SIMILARITY` is currently in preview.
28+
> - SQL Server support for `JARO_WINKLER_SIMILARITY` introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
29+
> - `JARO_WINKLER_SIMILARITY` is available in Azure SQL Managed Instance configured with the [Always-up-to-date](/azure/azure-sql/managed-instance/update-policy#always-up-to-date-update-policy) update policy.
2930
3031
## Syntax
3132

0 commit comments

Comments
 (0)