Skip to content

Commit ed2aeeb

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/sql-docs-pr into release-remove-sscurrent-tag
2 parents 769b6d5 + fe0a386 commit ed2aeeb

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/big-data-cluster/deploy-on-aks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Choose the latest available version for your cluster. Record the version number.
144144

145145
## Connect to the cluster
146146

147-
1. To configure kubectl to connect to your Kubernetes cluster, run the [az aks get-credentials](/cli/azure/aks#az-aks-get-credentials) command. This step downloads credentials and configures the kubectl CLI to use them.
147+
1. To configure kubectl to connect to your Kubernetes cluster, run the [az aks get-credentials](/cli/azure/aks#az_aks_get_credentials) command. This step downloads credentials and configures the kubectl CLI to use them.
148148

149149
```azurecli
150150
az aks get-credentials --resource-group=sqlbdcgroup --name kubcluster

docs/relational-databases/security/encryption/troubleshoot-tde.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ Use the following cmdlet or command to ensure that an identity has been assigned
6464

6565
- Azure PowerShell: [Get-AzureRMSqlServer](/powershell/module/AzureRM.Sql/Get-AzureRmSqlServer)
6666

67-
- Azure CLI: [az-sql-server-show](/cli/azure/sql/server#az-sql-server-show)
67+
- Azure CLI: [az-sql-server-show](/cli/azure/sql/server#az_sql_server_show)
6868

6969
**Mitigation**
7070

7171
Use the following cmdlet or command to configure an Azure AD identity (an AppId) for the logical SQL Server instance:
7272

7373
- Azure PowerShell: [Set-AzureRmSqlServer](/powershell/module/azurerm.sql/set-azurermsqlserver) with the `-AssignIdentity` option.
7474

75-
- Azure CLI: [az sql server update](/cli/azure/sql/server#az-sql-server-update) with the `--assign_identity` option.
75+
- Azure CLI: [az sql server update](/cli/azure/sql/server#az_sql_server_update) with the `--assign_identity` option.
7676

7777
In the Azure portal, go to the key vault, and then go to **Access policies**. Complete these steps:
7878

@@ -99,7 +99,7 @@ To identify the key URI and the key vault:
9999

100100
- Azure PowerShell: [Get-AzureRmSqlServerKeyVaultKey](/powershell/module/azurerm.sql/get-azurermsqlserverkeyvaultkey)
101101

102-
- Azure CLI: [az-sql-server-tde-key-show](/cli/azure/sql/server/tde-key#az-sql-server-tde-key-show)
102+
- Azure CLI: [az-sql-server-tde-key-show](/cli/azure/sql/server/tde-key#az_sql_server_tdekey_show)
103103

104104
1. Use the key URI to identify the key vault:
105105

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
3636
MAX( [ ALL | DISTINCT ] expression )
3737
3838
-- Analytic Function Syntax
39-
MAX ([ ALL ] expression) OVER ( [ <partition_by_clause> ] [ <order_by_clause> ] )
39+
MAX ([ ALL ] expression) OVER ( <partition_by_clause> [ <order_by_clause> ] )
4040
```
4141

4242
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
@@ -53,8 +53,8 @@ MAX ([ ALL ] expression) OVER ( [ <partition_by_clause> ] [ <order_by_clause> ]
5353

5454
For more information, see [Expressions &#40;Transact-SQL&#41;](../../t-sql/language-elements/expressions-transact-sql.md).
5555

56-
OVER **(** [ _partition\_by\_clause_ ] _order\_by\_clause_**)**
57-
*partition_by_clause* divides the result set produced by the FROM clause into partitions to which the function is applied. If not specified, the function treats all rows of the query result set as a single group. *order_by_clause* determines the logical order in which the operation is performed. *order_by_clause* is required. For more information, see [OVER Clause &#40;Transact-SQL&#41;](../../t-sql/queries/select-over-clause-transact-sql.md).
56+
OVER **(** _partition\_by\_clause_ [ _order\_by\_clause_ ] **)**
57+
*partition_by_clause* divides the result set produced by the FROM clause into partitions to which the function is applied. If not specified, the function treats all rows of the query result set as a single group. *order_by_clause* determines the logical order in which the operation is performed. *_partition\_by\_clause_* is required. For more information, see [OVER Clause &#40;Transact-SQL&#41;](../../t-sql/queries/select-over-clause-transact-sql.md).
5858

5959
## Return Types
6060
Returns a value same as *expression*.

0 commit comments

Comments
 (0)