|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: ORA-01012 ORA-02063 ORA-02396 Database Link Disconnect [message #668010 is a reply to message #668009] |
Tue, 30 January 2018 11:25 |
marcossantos
Messages: 123 Registered: June 2008
|
Senior Member |
|
|
SELECT USERNAME, PROFILE, ACCOUNT_STATUS FROM DBA_USERS where username like '%MGBR%'
USERNAME PROFILE ACCOUNT_STATUS
MGBR UFBR_PROFILE OPEN
select a.username,b.profile,b.RESOURCE_NAME,b.LIMIT from dba_users a, dba_profiles b where
b.resource_name='IDLE_TIME' and a.profile=b.profile and a.username='MGBR';
USERNAME PROFILE RESOURCE_NAME LIMIT
MGBR UFBR_PROFILE IDLE_TIME 5
|
|
|
|
|
|
|
|