Renaming a TableUse the DATATABLES client control table to rename tables in the relational database. The dataset_name column shows the DMSII data set name and the table_name column shows the name of the table as it appears in the relational database. For an explanation of how the DMSII data set and data items are mapped to the relational database, see Relational Database Table and Column Names. You can change one or more relational database table names before you clone DMSII data sets. If you use the clone command, keep in mind that you must specify the DMSII data set name with the clone command, not the relational database table name. This means that if a DMSII data set is named ORD-YEAR-TOTAL and you rename the equivalent relational database table to total, you must still reference the DMSII data set by its name ORD-YEAR-TOTAL. When you rename a table, make sure to do the following:
ExampleThe following script changes the name of the table derived from the data set named EMPLOYEE to be full_time_employees. Both the DATATABLES and DATAITEMS client control tables must be updated as all data items have a column that points back to the table to which they belong. File name: script.user_define.employee update DATATABLES set table_name='full_time_employees' /***/ update DATAITEMS set table_name='full_time_employees' | ||
|