Files
dc/sas/sasjs/db/datactrl/mpe_excel_map.ddl
zver 2d4d068413
Some checks failed
Build / Build-and-ng-test (pull_request) Failing after 14s
fix: increasing length of mpe_excel_map cols to
2024-01-01 12:23:07 +00:00

20 lines
486 B
SQL

/**
@file
@brief DDL for MPE_EXCEL_MAP
@version 9.3
@author 4GL Apps Ltd
@copyright 4GL Apps Ltd
**/
create table &curlib..mpe_excel_map(
tx_from num not null,
XLMAP_ID char(32) not null,
XLMAP_RANGE_ID char(32) not null,
XLMAP_SHEET char(32) not null,
XLMAP_START char(1000) not null,
XLMAP_FINISH char(1000),
tx_to num not null,
constraint pk_mpe_excel_map
primary key(tx_from,XLMAP_ID,XLMAP_RANGE_ID));