Table of Contents

Search

  1. Preface
  2. Introduction to PowerExchange Utilities
  3. createdatamaps - Data Map Creation Utility
  4. DTLCCADW - Adabas PCAT Utility
  5. DTLCUIML - IMS Log Marker Utility
  6. DTLINFO - Release Information Utility
  7. DTLREXE - Remote Execution Utility
  8. DTLUAPPL - Restart Token Utility
  9. DTLUCBRG - Batch Registration Utility
  10. DTLUCDEP - CDEP Maintenance Utility
  11. DTLUCSR2 - IDMS SR2 and SR3 Records Utility
  12. DTLUCUDB - DB2 for Linux, UNIX, and Windows CDC Utility
  13. DTLULCAT and DTLULOGC - IDMS Log Catalog Utilities
  14. DTLURDMO - Data Map Utility
  15. DTLUTSK - Task Control Utility
  16. EDMLUCTR - Log Scan and Print Utility
  17. EDMXLUTL - Event Marker Utility
  18. HOSTENT - TCP/IP Address Reporter Utility
  19. PWXCATMY - MySQL Catalog Utility
  20. PWXUCCLPRT - Print Log Summary Utility
  21. PWXUCDCT - Logger for Linux, UNIX, and Windows Utility
  22. PWXUCREG - Capture Registration Suspend Utility
  23. PWXUCRGP - Capture Registrations Print Utility
  24. PWXUDMX - Data Maps Update Time ECSA Memory Utility
  25. PWXUGSK - SSL Reporting Utility for z/OS
  26. PWXUMAP - Map List Utility
  27. PWXUSSL - PowerExchange SSL Reporting Utility

DM_COPY RENAME Statement

DM_COPY RENAME Statement

The RENAME statement specifies which elements of the data map name are renamed on the target system. For most parameters, the first operand represents the item or items being renamed, and the second operand represents the new name. For example:
MAP=(map01,map02)
The first operand can be any of the following:
  • The full name of the item being renamed
  • A partial name with a wildcard (*)
  • A wildcard (*) only
In each case, all items matching the specified name or pattern are renamed to the value of the second operand.
DBD=(
old_dbd_name
,
new_dbd_name
)
For IMS DL1 or ODBA data maps, renames the DBDs in the data map that match the name or pattern in the first operand to the specified name.
In the following example, all DBDs named
dbd01
are renamed to
dbd02
:
DBD=(dbd01,dbd02)
IDMS_PAGEGROUP_RADIX=(
old_page_group
,
new_page_group
,
old_radix
,
new_radix
)
For IDMS data maps, changes the page group or radix value. This parameter enables you to migrate registrations and extraction maps to environments with different values for the page group and radix database settings.
For
old_page_group
and
new_page_group
, specify a value from 0 to 32767.
For
old_radix
and
new_radix
, specify a value are 2 to 12.
MAP=(
old_map_name,new_map_name)
Renames the data maps that match the name or pattern in the first operand to the specified name.
In the following example, all data maps named
map01
are renamed to
map02
:
MAP=(map01,map02)
In the following example, all data maps are renamed to
newmap
:
MAP=(*,newmap)
In the following example, all data map names ending in
tmp
are renamed to
fixed
:
MAP=(*tmp,fixed)
SCHEMA=(
old_schema_name,new_schema_name)
Renames the data map schemas that match the name or pattern in the first operand to the specified name.
In the following example, all schemas named
test
are renamed to
prod
:
SCHEMA=(test,prod)
In the following example, all schemas are renamed to
newprod
:
SCHEMA=(*,newprod)
In the following example, all schemas ending in
tmp
are renamed to
fixed
:
SCHEMA=(*tmp,fixed)
TABLE=(
old_table_name,new_table_name)
Renames the tables that match the name or pattern in the first operand to the specified name.
In the following example, all tables named
testtab01
are renamed to
prodtab01
:
TABLE=(testtab01,prodtab01)
In the following example, all tables are renamed to
newtable
:
TABLE=(*,newtable)
In the following example, all tables ending in
01
are renamed to
fixed
:
TABLE=(*01,fixed)

0 COMMENTS

We’d like to hear from you!