Tag: manage

dba_jobs and interval

Few examples of some scenarios of setting intervals for dba_jobs. Note: Updating the interval will not update the NEXT_DATE run of the job until the job runs. Setting a job to run every monday at 10:00 am SQL> exec dbms_job.interval(5, 'TRUNC(NEXT_DAY(SYSDATE, ''MONDAY''))+(10/24)'); SQL> commit; -- assume job was run and this SQL was run after … Continue reading dba_jobs and interval

Managing SQL Server 2000 Transaction Log Growth

Article to manage SQL Server 2000 transaction log growth http://www.mssqltips.com/tip.asp?tip=950