mpe_xlmap_info.ddl
Go to the documentation of this file.
1 /**
2  @file
3  @brief DDL for mpe_xlmap_info
4 
5  @version 9.3
6  @author 4GL Apps Ltd
7  @copyright 4GL Apps Ltd
8 **/
9 
10 create table &curlib..mpe_xlmap_info(
11  tx_from num not null,
12  XLMAP_ID char(32) not null,
13  XLMAP_DESCRIPTION char(1000) not null,
14  XLMAP_TARGETLIBDS char(41) not null,
15  tx_to num not null,
16  constraint pk_mpe_xlmap_info
17  primary key(tx_from,XLMAP_ID));