Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
set feedback off
set pagesize 35
col a heading "Earliest|Object|Create|Time" format a20
col b heading "Latest|Object|Create|Time" format a20
select min(to_char(created,'yyyy-mm-dd hh24:mi:ss')) a
,max(to_char(created,'yyyy-mm-dd hh24:mi:ss')) b
,owner
from dba_objects
group by owner
order by 1
/
set feedback on
SQL> set feedback off
SQL> set pagesize 35
SQL> col a heading "Earliest|Object|Create|Time" format a20
SQL> col b heading "Latest|Object|Create|Time" format a20
SQL> select min(to_char(created,'yyyy-mm-dd hh24:mi:ss')) a
2 ,max(to_char(created,'yyyy-mm-dd hh24:mi:ss')) b
3 ,owner
4 from dba_objects
5 group by owner
6 order by 1
7 /
Earliest Latest
Object Object
Create Create
Time Time OWNER
-------------------- -------------------- ------------------
2003-09-14 23:27:09 2004-03-03 11:40:09 SYS
2003-09-14 23:27:17 2004-02-27 11:40:12 PUBLIC
2003-09-14 23:27:26 2003-09-15 00:01:58 OUTLN
2003-09-14 23:29:23 2004-02-27 11:33:11 SYSTEM
2003-09-15 01:20:10 2004-06-05 22:43:48 DHUNT