DICTIONARY.PWDB {user char(8) Label = 'User'
auth_lvl char(5) Label = 'Authorization Level'
ip_addr char(16) Label = 'IP Address'
defgrp char(8) Label = 'Default Group'
othgrps char(40) Label = 'Other Groups'
expire char(6) Label = 'Expire Period'
mod_date char(32) Label = 'Password Last Modified'
log_date char(32) Label = 'Last Login'
timeout char(6) Label = 'Timeout Period'
strikes char(6) Label = 'Failed Login Attempts'}
DICTIONARY.ACLS {owner char(8) Label = 'Owner'
group char(8) Label = 'Group'
defacs char(56) Label = 'Default Access'
grpacs char(56) Label = 'Group Access'}
proc sql;
connect to sasspds (dbq='tmp' server=localhost.5400
user='admin'
password='spds123'
ACLSPECIAL=YES);
select *
from connection
to sasspds
(select *
from dictionary.pwdb)
select *
from connection
to sasspds
(select user, log_date
from dictionary.pwdb);
proc sql;
connect to sasspds (dbq='tmp' server=localhost.5400
user='admin'
password='spds123'
ACLSPECIAL=YES);
select *
from connection
to sasspds
(select *
from dictionary.acls);
select *
from connection
to sasspds
(select *
from dictionary.acls
where owner = "Jones");