Skip to content

Commit e05b5b7

Browse files
20220524 1407 build review
1 parent 4707740 commit e05b5b7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

articles/synapse-analytics/migration-guides/netezza/1-design-performance-migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Netezza implements some database objects that aren't directly supported in Azure
153153
- Temporal columns. For instance, `DATE`, `TIME`, and `TIMESTAMP`.
154154
- `CHAR` columns, if these are part of a materialized view and mentioned in the `ORDER BY` clause.
155155

156-
You can find out which columns have zone maps by using the nz_zonemap utility, which is part of the NZ Toolkit. Azure Synapse doesn't include zone maps, but you can achieve similar results by using other user-defined index types and/or partitioning.
156+
You can find out which columns have zone maps by using the `nz_zonemap` utility, which is part of the NZ Toolkit. Azure Synapse doesn't include zone maps, but you can achieve similar results by using other user-defined index types and/or partitioning.
157157

158158
- Clustered Base tables (CBT)—In Netezza, CBTs are commonly used for fact tables, which can have billions of records. Scanning such a huge table requires a lot of processing time, since a full table scan might be needed to get relevant records. Organizing records on restrictive CBT via allows Netezza to group records in same or nearby extents. This process also creates zone maps that improve the performance by reducing the amount of data to be scanned.
159159

articles/synapse-analytics/migration-guides/netezza/5-minimize-sql-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Netezza implements some database objects that aren't directly supported in Azure
7979
- Temporal columns. For instance, `DATE`, `TIME`, and `TIMESTAMP`.
8080
- `CHAR` columns, if these are part of a materialized view and mentioned in the `ORDER BY` clause.
8181

82-
You can find out which columns have zone maps by using the nz_zonemap utility, which is part of the NZ Toolkit. Azure Synapse doesn't include zone maps, but you can achieve similar results by using other user-defined index types and/or partitioning.
82+
You can find out which columns have zone maps by using the `nz_zonemap` utility, which is part of the NZ Toolkit. Azure Synapse doesn't include zone maps, but you can achieve similar results by using other user-defined index types and/or partitioning.
8383

8484
- Clustered Base tables (CBT)—In Netezza, CBTs are commonly used for fact tables, which can have billions of records. Scanning such a huge table requires a lot of processing time, since a full table scan might be needed to get relevant records. Organizing records on restrictive CBT via allows Netezza to group records in same or nearby extents. This process also creates zone maps that improve the performance by reducing the amount of data to be scanned.
8585

articles/synapse-analytics/migration-guides/teradata/2-etl-load-migration-considerations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ It makes sense to only migrate tables that are in use in the existing system. Ta
3939

4040
If enabled, Teradata system catalog tables and logs contain information that can determine when a given table was last accessed—which can in turn be used to decide whether a table is a candidate for migration.
4141

42-
Here's an example query on dbc.tables that provides the date of last access and last modification:
42+
Here's an example query on `DBC.Tables` that provides the date of last access and last modification:
4343

4444
```sql
4545
SELECT TableName, CreatorName, CreateTimeStamp, LastAlterName,
@@ -77,7 +77,7 @@ With this approach, standard Teradata utilities, such as Teradata Parallel Data
7777

7878
- The migration process is orchestrated and controlled entirely within the Azure environment.
7979

80-
#### Migrating data marts—stay physical or go virtual?
80+
#### Migrating data marts - stay physical or go virtual?
8181

8282
> [!TIP]
8383
> Virtualizing data marts can save on storage and processing resources.
@@ -130,7 +130,7 @@ The first step is always to build an inventory of ETL/ELT processes that need to
130130

131131
In the preceding flowchart, decision 1 relates to a high-level decision about whether to migrate to a totally Azure-native environment. If you're moving to a totally Azure-native environment, we recommend that you re-engineer the ETL processing using [Pipelines and activities in Azure Data Factory](/azure/data-factory/concepts-pipelines-activities?msclkid=b6ea2be4cfda11ec929ac33e6e00db98&tabs=data-factory) or [Synapse Pipelines](/azure/synapse-analytics/get-started-pipelines?msclkid=b6e99db9cfda11ecbaba18ca59d5c95c). If you're not moving to a totally Azure-native environment, then decision 2 is whether an existing third-party ETL tool is already in use.
132132

133-
In the Teradata environment, some or all ETL processing may be performed by custom scripts using Teradata-specific utilities like BTEQ and TPT. In this case, your approach should be to reengineer using Data Factory.
133+
In the Teradata environment, some or all ETL processing may be performed by custom scripts using Teradata-specific utilities like BTEQ and TPT. In this case, your approach should be to re-engineer using Data Factory.
134134

135135
> [!TIP]
136136
> Leverage investment in existing third-party tools to reduce cost and risk.

articles/synapse-analytics/migration-guides/teradata/3-security-access-operations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ The information about current users and roles in a Teradata system is found in t
8484
/***SQL to find all users***/
8585
SELECT
8686
DatabaseName AS UserName
87-
From dbc.databases
88-
Where dbkind = 'u';
87+
FROM DBC.Databases
88+
WHERE dbkind = 'u';
8989

9090
/***SQL to find all roles***/
9191
SELECT A.ROLENAME, A.GRANTEE, A.GRANTOR,

0 commit comments

Comments
 (0)