Quote:
|
Originally Posted by Cougar8000
As Marcus already pointed out please provide output for the following.
db2 get dbm cfg | grep -i 'group name'
|
$ db2 get dbm cfg |grep -i 'group name'
SYSADM group name (SYSADM_GROUP) =
SYSCTRL group name (SYSCTRL_GROUP) =
SYSMAINT group name (SYSMAINT_GROUP) =
SYSMON group name (SYSMON_GROUP) =
Quote:
|
Originally Posted by Cougar8000
lsuser hirem ------- make sure that (hirem) is low case>
|
$ lsuser hirem
hirem id=1101 pgrp=ext_mast groups=ext_mast,staff home=/home/ext_users/hirem shell=/usr/bin/ksh gecos=test id registry=compat
$ db2 "select * from syscat.dbauth where GRANTEE in ('HIREM','EXT_MAST','STAFF')"
0 record(s) selected.
$ db2 "select * from syscat.tabauth where TABNAME='RESTRICTED_ACCESS' and GRANTEE in ('HIREM','EXT_MAST','STAFF')"
0 record(s) selected.
Quote:
|
Originally Posted by sathyaram_s
Code:
db2 connect to dbname
db2 get authorizations
will give you some of this information
|
db2 get authorizations gave me this -
Quote:
Quote:
$ db2 get authorizations
Administrative Authorizations for Current User
Direct SYSADM authority = NO
Direct SYSCTRL authority = NO
Direct SYSMAINT authority = NO
Direct DBADM authority = NO
Direct CREATETAB authority = NO
Direct BINDADD authority = NO
Direct CONNECT authority = NO
Direct CREATE_NOT_FENC authority = NO
Direct IMPLICIT_SCHEMA authority = NO
Direct LOAD authority = NO
Direct QUIESCE_CONNECT authority = NO
Direct CREATE_EXTERNAL_ROUTINE authority = NO
Direct SYSMON authority = NO
Indirect SYSADM authority = YES
Indirect SYSCTRL authority = NO
Indirect SYSMAINT authority = NO
Indirect DBADM authority = NO
Indirect CREATETAB authority = NO
Indirect BINDADD authority = NO
Indirect CONNECT authority = NO
Indirect CREATE_NOT_FENC authority = NO
Indirect IMPLICIT_SCHEMA authority = NO
Indirect LOAD authority = NO
Indirect QUIESCE_CONNECT authority = NO
Indirect CREATE_EXTERNAL_ROUTINE authority = NO
Indirect SYSMON authority = NO
|
|
So, it looks to me like that Indirect SYSADM authority could be the root of my problem. Now I just need to find out what that even means.
Thanks for the help so far.