Skip to content

Commit e5b7db9

Browse files
Merge pull request #34593 from MashaMSFT/fixes
Updating SQL MI supportability
2 parents 8af3f7f + 531ff4c commit e5b7db9

24 files changed

+77
-13
lines changed

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/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

docs/t-sql/functions/regexp-count-transact-sql.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ REGEXP_COUNT (
3030
)
3131
```
3232

33+
> [!NOTE]
34+
> 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.
35+
36+
3337
## Arguments
3438

3539
#### *string_expression*

docs/t-sql/functions/regexp-instr-transact-sql.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ REGEXP_INSTR
3232
)
3333
```
3434

35+
> [!NOTE]
36+
> 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.
37+
38+
3539
## Arguments
3640

3741
#### *string_expression*

0 commit comments

Comments
 (0)