Files
dc/sas/sasjs/db/datactrl/mpe_security.ddl
Mihajlo Medjedovic f268de21a3
Some checks failed
Test / Build-and-test-development (push) Failing after 6m14s
Test / Build-and-test-development-latest-adapter (push) Failing after 6m13s
init
2023-07-13 13:44:05 +02:00

23 lines
455 B
SQL

/**
@file
@brief ddl file
@details
@version 9.2
@author 4GL Apps Ltd
@copyright 4GL Apps Ltd
**/
proc sql;
create table &curlib..mpe_security(
tx_from num not null,
libref char(8) not null,
dsn char(32) not null,
access_level char(10) not null,
sas_group char(100) not null,
tx_to num not null,
constraint pk_mpe_security
primary key(libref,dsn,access_level,sas_group,tx_from));