Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Auto Datafile Creation - How to aktivate ?
Eagle Fan wrote:
> oracle noob wrote:
>> I want to create a new data file automatical, not extend an old one. >> >> This is the DDL sql, we use >> >> ALTER TABLESPACE "USERS" ADD DATAFILE '/oradata/xyz/users01.dbf' SIZE >> 4194304K REUSE AUTOEXTEND ON NEXT 1280K MAXSIZE 4096M >> >> >> The Datafile have to be smaler than 4,4 Gbyte.
I think it inappropriate to use a cron job for something that can and should be done entirely within the database and will work the same no matter the operating system and shell.
DBMS_JOB or DBMS_SCHEDULER can easily be used to run a procedure to monitor usage and take the appropriate actions when required including notifying the DBA what actions were taken and keeping a log of run results in a queryable table.
-- Daniel A. Morgan University of Washington damorgan_at_x.washington.edu (replace x with u to respond) Puget Sound Oracle Users Group www.psoug.orgReceived on Mon Aug 21 2006 - 10:45:30 CDT