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

Commit 00c1482

Browse files
authored
Merge pull request #23299 from MicrosoftDocs/main
7/21 AM Publish
2 parents 6282cd7 + 22cd926 commit 00c1482

22 files changed

Lines changed: 22 additions & 22 deletions

docs/relational-databases/system-stored-procedures/sp-send-dbmail-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ sp_send_dbmail [ [ @profile_name = ] 'profile_name' ]
125125
Is a query to execute. The results of the query can be attached as a file, or included in the body of the e-mail message. The query is of type **nvarchar(max)**, and can contain any valid [!INCLUDE[tsql](../../includes/tsql-md.md)] statements. Note that the query is executed in a separate session, so local variables in the script calling **sp_send_dbmail** are not available to the query.
126126

127127
>[!NOTE]
128-
> When using `@query` parameter, `@profile_name` cannot reference principal that belongs to an Azure AD group. If Azure AD authentication is used, principal needs to be directly mapped to Azure AD server principal (login), otherwise it will not effectively be able to execute the query. This is due to Azure SQL Managed Instance impersonation and EXECUTE AS [limitations](https://docs.microsoft.com/azure/azure-sql/managed-instance/transact-sql-tsql-differences-sql-server#logins-and-users).
128+
> When using `@query` parameter, user that executes `sp_send_dbmail` must be SQL login or directly mapped to principal (login) of Azure AD or AD. If user is member of Azure AD group or AD group it will not be able to execute the query. This is due to Azure SQL Managed Instance impersonation and EXECUTE AS [limitations](https://docs.microsoft.com/azure/azure-sql/managed-instance/transact-sql-tsql-differences-sql-server#logins-and-users).
129129
130130
`[ @execute_query_database = ] 'execute_query_database'`
131131
Is the database context within which the stored procedure runs the query. The parameter is of type **sysname**, with a default of the current database. This parameter is only applicable if **\@query** is specified.

docs/relational-databases/system-stored-procedures/sys-cdc-set-scheduler-job-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ sys.sp_cdc_set_scheduler_job [ @jobType = ] N'JobType'
4747
Instructs the CDC scheduler to pause or resume scheduling the job. Valid values are `pause` or `resume`. There is no default value.
4848

4949
`[ @abortTask = ] abortTask`
50-
Indicates whether you want to abort the current running task or not. Valid **int** values are `1` or `0`, with no default value. The `abortTask` value is only used when the _state_ value is `pause`.
50+
Indicates whether you want to abort the current running task or not. Valid **int** values are `1` or `0`, with no default value. The `abortTask` value is only used when the _state_ value is `pause`. However, currently it only **accepts `1` as the valid input.**
5151

5252
## Return Code Values
5353
**0** (success) or **1** (failure)

docs/t-sql/queries/contains-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ms.author: vanto
3838

3939
# CONTAINS (Transact-SQL)
4040

41-
[!INCLUDE [SQL Server SQL Database](../../includes/applies-to-version/sql-asdb.md)]
41+
[!INCLUDE [SQL Server Azure SQL Database Azure SQL Managed Instance](../../includes/applies-to-version/sql-asdb-asdbmi.md)]
4242

4343
Searches for precise or fuzzy (less precise) matches to single words and phrases, words within a certain distance of one another, or weighted matches in [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]. CONTAINS is a predicate used in the [WHERE clause](../../t-sql/queries/where-transact-sql.md) of a [!INCLUDE[tsql](../../includes/tsql-md.md)] SELECT statement to perform [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] full-text search on full-text indexed columns containing character-based data types.
4444

docs/t-sql/queries/freetext-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ author: VanMSFT
2424
ms.author: vanto
2525
---
2626
# FREETEXT (Transact-SQL)
27-
[!INCLUDE [SQL Server SQL Database](../../includes/applies-to-version/sql-asdb.md)]
27+
[!INCLUDE [SQL Server Azure SQL Database Azure SQL Managed Instance](../../includes/applies-to-version/sql-asdb-asdbmi.md)]
2828

2929
Is a predicate used in the [!INCLUDE[tsql](../../includes/tsql-md.md)] [WHERE clause](../../t-sql/queries/where-transact-sql.md) of a [!INCLUDE[tsql](../../includes/tsql-md.md)] SELECT statement to perform a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] full-text search on full-text indexed columns containing character-based data types. This predicate searches for values that match the meaning and not just the exact wording of the words in the search condition. When FREETEXT is used, the full-text query engine internally performs the following actions on the *freetext_string*, assigns each term a weight, and then finds the matches:
3030

docs/t-sql/queries/hints-transact-sql-join.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ author: VanMSFT
2525
ms.author: vanto
2626
---
2727
# Hints (Transact-SQL) - Join
28-
[!INCLUDE [SQL Server SQL Database](../../includes/applies-to-version/sql-asdb.md)]
28+
[!INCLUDE [SQL Server Azure SQL Database Azure SQL Managed Instance](../../includes/applies-to-version/sql-asdb-asdbmi.md)]
2929

3030
Join hints specify that the query optimizer enforce a join strategy between two tables in [!INCLUDE[ssnoversion](../../includes/ssnoversion-md.md)]. For general information about joins and join syntax, see [FROM (Transact-SQL)](../../t-sql/queries/from-transact-sql.md).
3131

docs/t-sql/queries/hints-transact-sql-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ ms.author: randolphwest
5858
ms.reviewer: wiassaf
5959
---
6060
# Hints (Transact-SQL) - Query
61-
[!INCLUDE [SQL Server SQL Database](../../includes/applies-to-version/sql-asdb.md)]
61+
[!INCLUDE [SQL Server Azure SQL Database Azure SQL Managed Instance](../../includes/applies-to-version/sql-asdb-asdbmi.md)]
6262

6363
Query hints specify that the indicated hints are used in the scope of a query. They affect all operators in the statement. If UNION is involved in the main query, only the last query involving a UNION operation can have the OPTION clause. Query hints are specified as part of the [OPTION clause](../../t-sql/queries/option-clause-transact-sql.md). Error 8622 occurs if one or more query hints cause the Query Optimizer not to generate a valid plan.
6464

docs/t-sql/queries/hints-transact-sql-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ author: VanMSFT
3939
ms.author: vanto
4040
---
4141
# Hints (Transact-SQL) - Table
42-
[!INCLUDE [SQL Server SQL Database](../../includes/applies-to-version/sql-asdb.md)]
42+
[!INCLUDE [SQL Server Azure SQL Database Azure SQL Managed Instance](../../includes/applies-to-version/sql-asdb-asdbmi.md)]
4343

4444
Table hints override the default behavior of the Query Optimizer for the duration of the data manipulation language (DML) statement by specifying a locking method, one or more indexes, a query-processing operation such as a table scan or index seek, or other options. Table hints are specified in the FROM clause of the DML statement and affect only the table or view referenced in that clause.
4545

docs/t-sql/queries/hints-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ author: VanMSFT
2323
ms.author: vanto
2424
---
2525
# Hints (Transact-SQL)
26-
[!INCLUDE [SQL Server](../../includes/applies-to-version/sqlserver.md)]
26+
[!INCLUDE [SQL Server Azure SQL Database Azure SQL Managed Instance](../../includes/applies-to-version/sql-asdb-asdbmi.md)]
2727

2828
Hints are options or strategies specified for enforcement by the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] query processor on SELECT, INSERT, UPDATE, or DELETE statements. The hints override any execution plan the query optimizer might select for a query.
2929

docs/t-sql/queries/output-clause-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ author: VanMSFT
3333
ms.author: vanto
3434
---
3535
# OUTPUT Clause (Transact-SQL)
36-
[!INCLUDE [SQL Server SQL Database](../../includes/applies-to-version/sql-asdb.md)]
36+
[!INCLUDE [SQL Server Azure SQL Database Azure SQL Managed Instance](../../includes/applies-to-version/sql-asdb-asdbmi.md)]
3737

3838
Returns information from, or expressions based on, each row affected by an INSERT, UPDATE, DELETE, or MERGE statement. These results can be returned to the processing application for use in such things as confirmation messages, archiving, and other such application requirements. The results can also be inserted into a table or table variable. Additionally, you can capture the results of an OUTPUT clause in a nested INSERT, UPDATE, DELETE, or MERGE statement, and insert those results into a target table or view.
3939

docs/t-sql/queries/readtext-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ author: VanMSFT
2222
ms.author: vanto
2323
---
2424
# READTEXT (Transact-SQL)
25-
[!INCLUDE [SQL Server SQL Database](../../includes/applies-to-version/sql-asdb.md)]
25+
[!INCLUDE [SQL Server Azure SQL Database Azure SQL Managed Instance](../../includes/applies-to-version/sql-asdb-asdbmi.md)]
2626

2727
Reads **text**, **ntext**, or **image** values from a **text**, **ntext**, or **image** column. Starts reading from a specified offset and reading the specified number of bytes.
2828

0 commit comments

Comments
 (0)