Loading...
Searching...
No Matches
mpe_security.ddl
Go to the documentation of this file.
1/**
2 @file
3 @brief ddl file
4 @details
5
6
7 @version 9.2
8 @author 4GL Apps Ltd
9 @copyright 4GL Apps Ltd
10**/
11
12
13proc sql;
14create table &curlib..mpe_security(
15 tx_from num not null,
16 libref char(8) not null,
17 dsn char(32) not null,
18 access_level char(10) not null,
19 sas_group char(100) not null,
20 tx_to num not null,
21 constraint pk_mpe_security
22 primary key(libref,dsn,access_level,sas_group,tx_from));