Skip to content

Commit b6be61e

Browse files
committed
minor edits - almost final?
1 parent 610e69a commit b6be61e

19 files changed

Lines changed: 35 additions & 20 deletions

azure-sql/database/failover-group-add-elastic-pool-tutorial.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,12 @@ Use this script to add a database to an elastic pool.
158158

159159
:::code language="azurecli" source="~/azure_cli_scripts/sql-database/failover-groups/add-elastic-pool-to-failover-group-az-cli.sh" range="32-34":::
160160

161-
---
161+
This portion of the tutorial uses the following Azure CLI cmdlets:
162+
163+
| Command | Notes |
164+
|---|---|
165+
| [az sql elastic-pool create](/cli/azure/sql/elastic-poolt#az_sql_elastic_pool_create) | Creates an elastic pool. |
166+
| [az sql db update](/cli/azure/sql/db#az_sql_db_update) | Updates a database|
162167

163168
## 3 - Create the failover group
164169

@@ -317,6 +322,16 @@ Use this script to add a database to the failover group.
317322

318323
:::code language="azurecli" source="~/azure_cli_scripts/sql-database/failover-groups/add-elastic-pool-to-failover-group-az-cli.sh" range="44-48":::
319324

325+
## CLI failover group creation reference
326+
327+
This portion of the tutorial uses the following Azure CLI cmdlets:
328+
329+
| Command | Notes |
330+
|---|---|
331+
| [az sql server create](/cli/azure/sql/server#az_sql_server_create) | Creates a server that hosts databases and elastic pools. |
332+
| [az sql elastic-pool create](/cli/azure/sql/elastic-poo#az_sql_elastic_pool_create) | Creates an elastic pool.|
333+
| [az sql failover-group create](/cli/azure/sql/failover-group#az_sql_failover_group_create) | Creates a failover group. |
334+
320335
---
321336

322337
## 4 - Test failover

azure-sql/database/scripts/add-database-to-failover-group-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If you choose to install and use the CLI locally, this topic requires that you a
2424

2525
### Sign in to Azure
2626

27-
Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
27+
Cloud Shell is automatically authenticated under the initial account signed-in with. Use the following script to sign in using a different subscription. Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
2828

2929
```azurecli-interactive
3030
subscription="<subscriptionId>" # add subscription here

azure-sql/database/scripts/add-elastic-pool-to-failover-group-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you choose to install and use the CLI locally, this article requires that you
2222

2323
### Sign in to Azure
2424

25-
Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
25+
Cloud Shell is automatically authenticated under the initial account signed-in with. Use the following script to sign in using a different subscription. Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
2626

2727
```azurecli-interactive
2828
subscription="<subscriptionId>" # add subscription here

azure-sql/database/scripts/auditing-and-threat-detection-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you choose to install and use the CLI locally, this topic requires that you a
2222

2323
### Sign in to Azure
2424

25-
Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
25+
Cloud Shell is automatically authenticated under the initial account signed-in with. Use the following script to sign in using a different subscription. Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
2626

2727
```azurecli-interactive
2828
subscription="<subscriptionId>" # add subscription here

azure-sql/database/scripts/backup-database-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you choose to install and use the CLI locally, this article requires that you
2222

2323
### Sign in to Azure
2424

25-
Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
25+
Cloud Shell is automatically authenticated under the initial account signed-in with. Use the following script to sign in using a different subscription. Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
2626

2727
```azurecli-interactive
2828
subscription="<subscriptionId>" # add subscription here

azure-sql/database/scripts/copy-database-to-new-server-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you choose to install and use the CLI locally, this article requires that you
2222

2323
### Sign in to Azure
2424

25-
Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
25+
Cloud Shell is automatically authenticated under the initial account signed-in with. Use the following script to sign in using a different subscription. Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
2626

2727
```azurecli-interactive
2828
subscription="<subscriptionId>" # add subscription here

azure-sql/database/scripts/create-and-configure-database-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you choose to install and use the CLI locally, this topic requires that you a
2525

2626
### Sign in to Azure
2727

28-
Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
28+
Cloud Shell is automatically authenticated under the initial account signed-in with. Use the following script to sign in using a different subscription. Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
2929

3030
```azurecli-interactive
3131
subscription="<subscriptionId>" # add subscription here

azure-sql/database/scripts/import-from-bacpac-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If you choose to install and use the CLI locally, this article requires that you
2626

2727
### Sign in to Azure
2828

29-
Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
29+
Cloud Shell is automatically authenticated under the initial account signed-in with. Use the following script to sign in using a different subscription. Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
3030

3131
```azurecli-interactive
3232
subscription="<subscriptionId>" # add subscription here

azure-sql/database/scripts/monitor-and-scale-database-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you choose to install and use the Azure CLI locally, this article requires th
2525

2626
### Sign in to Azure
2727

28-
Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
28+
Cloud Shell is automatically authenticated under the initial account signed-in with. Use the following script to sign in using a different subscription. Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
2929

3030
```azurecli-interactive
3131
subscription="<subscriptionId>" # add subscription here

azure-sql/database/scripts/move-database-between-elastic-pools-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you choose to install and use the CLI locally, this topic requires that you a
2222

2323
### Sign in to Azure
2424

25-
Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
25+
Cloud Shell is automatically authenticated under the initial account signed-in with. Use the following script to sign in using a different subscription. Sign in to Azure using the appropriate subscription. [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)]
2626

2727
```azurecli-interactive
2828
subscription="<subscriptionId>" # add subscription here

0 commit comments

Comments
 (0)