Skip to content

Commit 77c8ed0

Browse files
committed
updates
1 parent c66ca2e commit 77c8ed0

11 files changed

+49782
-49746
lines changed

.openpublishing.redirection.json

Lines changed: 49446 additions & 49421 deletions
Large diffs are not rendered by default.

articles/sql-data-warehouse/backup-and-restore.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

articles/sql-data-warehouse/cheat-sheet.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

articles/sql-data-warehouse/column-level-security.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

articles/sql-data-warehouse/create-data-warehouse-portal.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

articles/sql-data-warehouse/create-data-warehouse-powershell.md

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
- name: Azure
2+
tocHref: /azure/
3+
topicHref: /azure/index
4+
items:
5+
- name: Synapse Analytics
6+
tocHref: /azure/sql-database/
7+
topicHref: /azure/sql-data-warehouse/index
8+
9+
- name: Azure
10+
tocHref: /azure/
11+
topicHref: /azure/index
12+
items:
13+
- name: Synapse Analytics
14+
tocHref: /azure/azure-databricks/
15+
topicHref: /azure/sql-data-warehouse/index
16+
17+
- name: Azure
18+
tocHref: /azure/
19+
topicHref: /azure/index
20+
items:
21+
- name: Synapse Analytics
22+
tocHref: /azure/data-factory/
23+
topicHref: /azure/sql-data-warehouse/index
24+
25+
- name: Azure
26+
tocHref: /azure/
27+
topicHref: /azure/index
28+
items:
29+
- name: Synapse Analytics
30+
tocHref: /sql/t-sql/
31+
topicHref: /azure/sql-data-warehouse/index

articles/synapse-analytics/sql-data-warehouse/backup-and-restore.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Each snapshot creates a restore point that represents the time the snapshot star
8585

8686
You can either keep the restored data warehouse and the current one, or delete one of them. If you want to replace the current data warehouse with the restored data warehouse, you can rename it using [ALTER DATABASE (SQL pool)](/sql/t-sql/statements/alter-database-azure-sql-data-warehouse) with the MODIFY NAME option.
8787

88-
To restore a data warehouse, see [Restore a SQL pool using the Azure portal](sql-data-warehouse-restore-database-portal.md), [Restore a SQL pool using PowerShell](sql-data-warehouse-restore-database-powershell.md), or [Restore a SQL pool using REST APIs](sql-data-warehouse-restore-database-rest-api.md).
88+
To restore a data warehouse, see [Restore a SQL pool](../../sql-data-warehouse/sql-data-warehouse-restore-points.md#create-user-defined-restore-points-through-the-azure-portal).
8989

9090
To restore a deleted or paused data warehouse, you can [create a support ticket](../../sql-data-warehouse/sql-data-warehouse-get-started-create-support-ticket.md).
9191

@@ -95,7 +95,7 @@ If you need to directly restore across subscription, vote for this capability [h
9595

9696
## Geo-redundant restore
9797

98-
You can [restore your SQL pool](https://docs.microsoft.com/azure/sql-data-warehouse/sql-data-warehouse-restore-from-geo-backup#restore-from-an-azure-geographical-region-through-powershell) to any region supporting SQL pool at your chosen performance level.
98+
You can [restore your SQL pool](../../sql-data-warehouse/sql-data-warehouse-restore-from-geo-backup#restore-from-an-azure-geographical-region-through-powershell) to any region supporting SQL pool at your chosen performance level.
9999

100100
> [!NOTE]
101101
> To perform a geo-redundant restore you must not have opted out of this feature.

articles/synapse-analytics/sql-data-warehouse/create-data-warehouse-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Sign in to the [Azure portal](https://portal.azure.com/).
3232

3333
## Create a SQL pool
3434

35-
Data warehouses are created using SQL pool in Azure Synapse Analytics. A SQL pool is created with a defined set of [compute resources](../../sql-data-warehouse/memory-concurrency-limits.md). The database is created within an [Azure resource group](../azure-resource-manager/management/overview.md) and in an [Azure SQL logical server](../../sql-database/sql-database-servers.md).
35+
Data warehouses are created using SQL pool in Azure Synapse Analytics. A SQL pool is created with a defined set of [compute resources](../../sql-data-warehouse/memory-concurrency-limits.md). The database is created within an [Azure resource group](../../azure-resource-manager/management/overview.md) and in an [Azure SQL logical server](../../sql-database/sql-database-servers.md).
3636

3737
Follow these steps to create a SQL pool that contains the **AdventureWorksDW** sample data.
3838

articles/synapse-analytics/sql-data-warehouse/create-data-warehouse-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ $databasename = "mySampleDataWarehouse"
6969

7070
## Create a resource group
7171

72-
Create an [Azure resource group](../azure-resource-manager/management/overview.md) using the [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup) command. A resource group is a logical container into which Azure resources are deployed and managed as a group. The following example creates a resource group named `myResourceGroup` in the `westeurope` location.
72+
Create an [Azure resource group](../../azure-resource-manager/management/overview.md) using the [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup) command. A resource group is a logical container into which Azure resources are deployed and managed as a group. The following example creates a resource group named `myResourceGroup` in the `westeurope` location.
7373

7474
```powershell
7575
New-AzResourceGroup -Name $resourcegroupname -Location $location
7676
```
7777

7878
## Create a logical server
7979

80-
Create an [Azure SQL logical server](../sql-database/sql-database-logical-servers.md) using the [New-AzSqlServer](/powershell/module/az.sql/new-azsqlserver) command. A logical server contains a group of databases managed as a group. The following example creates a randomly named server in your resource group with an admin user named `ServerAdmin` and a password of `ChangeYourAdminPassword1`. Replace these pre-defined values as desired.
80+
Create an [Azure SQL logical server](../../sql-database/sql-database-logical-servers.md) using the [New-AzSqlServer](/powershell/module/az.sql/new-azsqlserver) command. A logical server contains a group of databases managed as a group. The following example creates a randomly named server in your resource group with an admin user named `ServerAdmin` and a password of `ChangeYourAdminPassword1`. Replace these pre-defined values as desired.
8181

8282
```powershell
8383
New-AzSqlServer -ResourceGroupName $resourcegroupname `

0 commit comments

Comments
 (0)