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: Restart Internal Concurrent Manager

RE: Restart Internal Concurrent Manager

From: Chris Griffith <Chris.Griffith_at_dstm.com>
Date: Fri, 5 May 2000 13:54:42 -0400
Message-Id: <10488.105096@fatcity.com>


are you logged in as the appl user? Did you source the environment file for the user? Are you sure the concurrent managers are running? Type ps -fu applXXX where applXXX is the user that owns the applications interface. This will tell you if the concurrent managers are started. You can also check this by logging in through sqlplus and running this script: col username format a15 heading "User"
col osuser format a15 heading "OS User"
col machine format a25 heading "Machine" col module format a10 heading "Module"

execute dbms_application_info.set_module('ORADBA', 'Who');

select sid, serial#, username, osuser, machine, module, status from v$session
where username is not null
order by osuser
/
This will show several entries for the appl user if they are started. If not, then skip shutting off the concurrent managers.

-----Original Message-----
From: Sophie Schaaf [mailto:eschaaf_at_goodegg.com] Sent: Friday, May 05, 2000 1:26 PM
To: Multiple recipients of list ORACLE-L Subject: Restart Internal Concurrent Manager

Hello all,

I am in my first day of learning dba stuff (how to bring up & down the db, etc.) and our dba is out of town.

We have db 8.0.5 on AIX and ora applications R11.

In an ideal world I would:
1. bring down concurrent manager (from user applmgr) 2. shutdown db (from user Oracle)

But, when I type in "stopmgr" for step one, I get:

This request is a special request that only Internal Concurrent Manager can process. The request will not process because the Internal Concurrent Manager is deactivated. This request will be cancelled by the Internal Concurrent Manager when it is reactivated.

So I need to start the Internal Concurrent Manager. This is not in production, so it could wait if absolutly necessary, but if its simple to explain where to do this from, I would very much appriciate it.

(Also, where do you find knowledge like this? looked in the Oracle Server
Documentation, but found nothing.)

Thank you very much,
Sophie

-- 
Author: Sophie Schaaf
  INET: eschaaf_at_goodegg.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).
Received on Fri May 05 2000 - 12:54:42 CDT

Original text of this message

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