List of Database users about to expire in 'n' days.
select * from dba_users where expiry_date > sysdate - 10 and expiry_date < sysdate + 10
select * from dba_users where expiry_date > sysdate - 10 and expiry_date < sysdate + 10
OPatch detects your platform as 453 while this patch is for 23
-- find where current SCN lives in SGA:
SQL> select ksmfsadr from x$ksmfsv where ksmfsnam = 'kcsgscn_';
KSMFSADR -------- 20009104
SQL> l 1 select dbms_flashback.get_system_change_number flashback_scn, 2 current_scn, 3 (select to_number(ksmmmval,'XXXXXXXX') 4 from x$ksmmem where addr = hextoraw('20009104')) * power(2,32) + 5 (select to_number(ksmmmval,'XXXXXXXX') 6 from x$ksmmem where addr = hextoraw('20009108')) direct_scn 7* from v$database SQL> /
FLASHBACK_SCN CURRENT_SCN DIRECT_SCN ------------- ----------- ---------- 2633692 2633692 2633692
Oracle E-business suite logs clean up #!/bin/bash cd $EBS_DOMAIN_HOME find $EBS_DOMAIN_HOME -type f -path "*/logs/*.log?*" -mtime...