You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql-data-warehouse/upgrade-to-latest-generation.md
+8-16Lines changed: 8 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,12 +118,12 @@ You can now seamlessly upgrade to the dedicated SQL pool (formerly SQL DW) Compu
118
118
The second step of the upgrade process is data migration ("Upgrading - Online"). Data migration is an online trickle background process. This process slowly moves columnar data from the old storage architecture to the new storage architecture using a local SSD cache. During this time, your dedicated SQL pool (formerly SQL DW) will be online for querying and loading. Your data will be available to query regardless of whether it has been migrated or not. The data migration happens at varying rates depending on your data size, your performance level, and the number of your columnstore segments.
119
119
120
120
1.**Optional Recommendation:**
121
-
Once the scaling operation is complete, you can speed up the data migration background process. You can force data movement by running [Alter Index rebuild](sql-data-warehouse-tables-index.md) on all primary columnstore tables you'd be querying at a larger SLO and resource class. This operation is **offline** compared to the trickle background process, which can take hours to complete depending on the number and sizes of your tables. However, once complete, data migration will be much quicker due to the new enhanced storage architecture with high-quality rowgroups.
121
+
Once the scaling operation is complete, you can speed up the data migration background process. You can force data movement by running [ALTER INDEX ... REBUILD](sql-data-warehouse-tables-index.md) on all primary columnstore tables you'd be querying at a larger SLO and resource class. This operation is offline, it will degrade or block other queries, but will finish faster compared to the trickle background process, which can take hours to complete depending on the number and sizes of your tables. However, once complete, data migration will be much quicker due to the new enhanced storage architecture with high-quality rowgroups.
122
122
123
123
> [!NOTE]
124
124
> Alter Index rebuild is an offline operation and the tables will not be available until the rebuild completes.
125
125
126
-
The following query generates the required Alter Index Rebuild commands to expedite data migration:
126
+
The following query generates the required `ALTER INDEX ... REBUILD` commands to expedite data migration:
127
127
128
128
```sql
129
129
SELECT'ALTER INDEX ['+idx.NAME+'] ON ['
@@ -170,31 +170,23 @@ WHERE idx.type_desc = 'CLUSTERED COLUMNSTORE';
170
170
171
171
## Upgrade from an Azure geographical region using restore through the Azure portal
172
172
173
-
## Create a user-defined restore point using the Azure portal
173
+
###Create a user-defined restore point using the Azure portal
174
174
175
175
1. Sign in to the [Azure portal](https://portal.azure.com/).
176
-
177
176
1. Navigate to the dedicated SQL pool (formerly SQL DW) that you want to create a restore point for.
178
-
179
-
1. At the top of the Overview section, select **+New Restore Point**.
180
-
181
-
:::image type="content" source="media/upgrade-to-latest-generation/create-restore-point.png" alt-text="Screenshot from the Azure portal showing the New Restore Point button in the toolbar.":::
182
-
177
+
1. In the toolbar of the **Overview** page, select **+ New Restore Point**.
183
178
1. Specify a name for your restore point.
184
179
185
-
## Restore an active or paused database using the Azure portal
180
+
###Restore an active or paused database using the Azure portal
186
181
187
182
1. Sign in to the [Azure portal](https://portal.azure.com/).
188
183
1. Navigate to the dedicated SQL pool (formerly SQL DW) that you want to restore from.
189
-
1. At the top of the Overview section, select **Restore**.
190
-
191
-
:::image type="content" source="media/upgrade-to-latest-generation/restoring.png" alt-text="Screenshot from the Azure portal showing the Restore button." lightbox="media/upgrade-to-latest-generation/restoring.png":::
192
-
184
+
1. In the toolbar of the **Overview** section, select **Restore**.
193
185
1. Select either **Automatic restore points** or **user-defined restore points**. For user-defined restore points, **select a user-defined restore point** or **Create a new user-defined restore point**. For the server, select **Create new** and choose a server in a Gen2 supported geographic region.
194
186
195
-
:::image type="content" source="media/upgrade-to-latest-generation/restore-points.png" alt-text="Screenshot from the Azure portal showing restore points to choose from.":::
187
+
:::image type="content" source="media/upgrade-to-latest-generation/restore-points.png" alt-text="Screenshot from the Azure portal showing restore points to choose from.":::
196
188
197
-
## Restore from an Azure geographical region using PowerShell
189
+
###Restore from an Azure geographical region using PowerShell
0 commit comments