REM
REM DBAToolZ NOTE:
REM This script was obtained from DBAToolZ.com
REM It's configured to work with SQL Directory (SQLDIR).
REM SQLDIR is a utility that allows easy organization and
REM execution of SQL*Plus scripts using user-friendly menu.
REM Visit DBAToolZ.com for more details and free SQL scripts.
REM
REM
REM File:
REM c_user_obj_today.sql
REM
REM USER MAINT SEGMENT
REM
REM Author:
REM Vitaliy Mogilevskiy (www.dbatoolz.com)
REM
REM Purpose:
REM
REM List objects by user created today
REM
REM
REM Usage:
REM c_user_obj_today.sql
REM
REM Example:
REM c_user_obj_today.sql
REM
REM
REM History:
REM 07-25-2001 VMOGILEV Created
REM
REM
@x_db_name.sql
set lines 132
set trims on
set pages 66
col obj format a45 heading "Object"
select owner||'.'||object_type||'.'||object_name obj
, TO_CHAR(created,'DD-MON-RRRR HH24:MI:SS') "Created"
from dba_objects
where trunc(created)=trunc(sysdate)
spool c_user_obj_today.&db_name..log
/
spool off