Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: to list administrator

RE: to list administrator

From: Rajaram <rajaram_k_at_netzero.net>
Date: Sat, 02 Jun 2001 10:51:55 -0700
Message-ID: <F001.00319468.20010602104523@fatcity.com>

No Wonder, U may be getting one from Lazy Dba list and Other from this List!! Check it out.

-----Original Message-----
From: Arslan Bahar [SMTP:abahar_at_ford.com.tr] Sent: Saturday, June 02, 2001 2:15 PM

To:     Multiple recipients of list ORACLE-L
Subject:        to  list  administrator

 i have been receiving each mail two times

-----Original Message-----
Sent: Saturday, June 02, 2001 7:30 PM
To: Multiple recipients of list ORACLE-L

Hi all!

There have been several posts lately regarding how to kill or remove jobs from the job queue once they're running, so here are the steps.

Background


To kill a currently running job


  1. First you must break or remove the job in the job queue, otherwise the job will just start right back up again the next time the SNP processes check for jobs to run (based on job_queue_interval). As the job owner: execute dbms_job.broken(<job#>,true); or execute dbms_job.remove(<job#>);
  2. Kill the SNP process at the OS level. You can identify the process to kill using the SID from DBA_JOBS_RUNNING: select s.sid, p.spid from v$session s, v$process p where s.paddr=p.addr and s.sid=<sid>; p.spid is the OS process ID
  3. As with any session that is killed, it will need to be rolled back and cleaned up.

To restart a broken job



A job will be marked as unbroken the next time it is successfully run or when it is marked as unbroken.   As the job owner:
    execute dbms_job.run(<job#>);
      or
    execute dbms_job.broken(<job#>,false);

Also check out Note 61730.1 "Using the DBMS_JOB Package"

HTH,


Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: A. Bardeen
  INET: abardeen1_at_yahoo.com
Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Arslan Bahar
  INET: abahar_at_ford.com.tr
Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).

NetZero Platinum
No Banner Ads and Unlimited Access
Sign Up Today - Only $9.95 per month!
http://www.netzero.net
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Rajaram
  INET: rajaram_k_at_netzero.net

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Sat Jun 02 2001 - 12:51:55 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US