dbTalk Databases Forums  

Cannot change ARCHIVELOG-MODE via EM

comp.databases.oracle.server comp.databases.oracle.server


Discuss Cannot change ARCHIVELOG-MODE via EM in the comp.databases.oracle.server forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Chris Seidel
 
Posts: n/a

Default Cannot change ARCHIVELOG-MODE via EM - 03-04-2010 , 06:24 AM






Hi,

I connected to an Oracle 10.2 via Enterprise Manager (EM) as sysdba.
The checkbox to enable/disable Archivelog-Mode is disabled (grayed out).

Why?

Thank you!

Reply With Quote
  #2  
Old   
Mladen Gogala
 
Posts: n/a

Default Re: Cannot change ARCHIVELOG-MODE via EM - 03-04-2010 , 07:43 AM






On Thu, 04 Mar 2010 13:24:20 +0100, Chris Seidel wrote:

Quote:
Hi,

I connected to an Oracle 10.2 via Enterprise Manager (EM) as sysdba. The
checkbox to enable/disable Archivelog-Mode is disabled (grayed out).

Why?

Thank you!
You're a DBA 2.0? Not a problem. Database can only be switched between
archivelog and noarchivelog when it's mounted and not open. Also, it must
be shut down cleanly. So, at approximately 10:30 AM, do the following:

sqlplus "/ as sysdba"
shutdown immediate
startup mount
alter database archivelog;
alter database open;

Being just an old DBA 1.0 hack, I dunno how to do that in EM.



--
http://mgogala.freehostia.com

Reply With Quote
  #3  
Old   
Chris Seidel
 
Posts: n/a

Default Re: Cannot change ARCHIVELOG-MODE via EM - 03-04-2010 , 08:00 AM



On Thu, 04 Mar 2010 14:43:08 +0100, Mladen Gogala
<gogala.mladen (AT) gmail (DOT) com> wrote:

Quote:
Database can only be switched between
archivelog and noarchivelog when it's mounted and not open. Also, it must
be shut down cleanly.
Doing this via EM allows it to do this in "open mode" because when you set
the checkbox all the stuff (shutdown, startup, alter ...) is done for you
by the EM.

For an unknown reason this checkbox is grayed out on one system. All other
systems are working well with an enabled checkbox.
All these systems have an open database and are fully operational.

Quote:
sqlplus "/ as sysdba"
shutdown immediate
startup mount
alter database archivelog;
alter database open;
Yes of course. But the customer needs it via EM too.

Quote:
I dunno how to do that in EM.
But this was the question

Thank you.

Reply With Quote
  #4  
Old   
John Hurley
 
Posts: n/a

Default Re: Cannot change ARCHIVELOG-MODE via EM - 03-04-2010 , 08:26 AM



On Mar 4, 7:24*am, "Chris Seidel" <csei... (AT) arcor (DOT) de> wrote:

snip

Quote:
Hi,

I connected to an Oracle 10.2 via Enterprise Manager (EM) as sysdba.
The checkbox to enable/disable Archivelog-Mode is disabled (grayed out).

Why?

Thank you!
Which OEM?

I cannot even find the option ( so far ) to change it going thru the
screens in a 10.2.0.4 OEM database control type setup.

Is this grid control you are going thru or am I just not finding it on
the GUI screen?

Reply With Quote
  #5  
Old   
Chris Seidel
 
Posts: n/a

Default Re: Cannot change ARCHIVELOG-MODE via EM - 03-04-2010 , 08:47 AM



On Thu, 04 Mar 2010 15:26:36 +0100, John Hurley
<johnbhurley (AT) sbcglobal (DOT) net> wrote:

Quote:
Which OEM?

I cannot even find the option ( so far ) to change it going thru the
screens in a 10.2.0.4 OEM database control type setup.
Ah... it works with EM 9.2 on server 9.2.
The server where it does not work is 10.
Could this be the reason that with EM 9.2 one cannot change this option on
a V 10 server?

Quote:
Is this grid control you are going thru
No.

In EM 9.2 you can find it under:

Instance/Configuration and then the Recovery tab.

http://www.oracle.com/technology/obe...rch_Mode.htm#c

Reply With Quote
  #6  
Old   
John Hurley
 
Posts: n/a

Default Re: Cannot change ARCHIVELOG-MODE via EM - 03-04-2010 , 09:34 AM



On Mar 4, 9:47*am, "Chris Seidel" <csei... (AT) arcor (DOT) de> wrote:

snip

Quote:
In EM 9.2 you can find it under:

Instance/Configuration and then the Recovery tab.

http://www.oracle.com/technology/obe...hange_Arch_Mod...
Okay then ... the "old old" EM ... I haven't used that one in a long
time.

The terminology people use gets a little confusing trying to sort out
old EM from new OEM thru dbconsole from new OEM thru grid control ...

Reply With Quote
  #7  
Old   
Mladen Gogala
 
Posts: n/a

Default Re: Cannot change ARCHIVELOG-MODE via EM - 03-04-2010 , 09:43 AM



On Thu, 04 Mar 2010 15:00:59 +0100, Chris Seidel wrote:

Quote:
Doing this via EM allows it to do this in "open mode" because when you
set the checkbox all the stuff (shutdown, startup, alter ...) is done
for you by the EM.
Beautiful! I cannot wait to do that in the middle of working hours.



--
http://mgogala.byethost5.com

Reply With Quote
  #8  
Old   
John Hurley
 
Posts: n/a

Default Re: Cannot change ARCHIVELOG-MODE via EM - 03-04-2010 , 07:04 PM



On Mar 4, 10:43*am, Mladen Gogala <n... (AT) email (DOT) here.invalid> wrote:

snip

Quote:
Doing this via EM allows it to do this in "open mode" because when you
set the checkbox all the stuff (shutdown, startup, alter ...) is done
for you by the EM.

Beautiful! I cannot wait to do that in the middle of working hours.
Even a little more drastic than recreating the OEM repository on a
live database!

Reply With Quote
  #9  
Old   
gazzag
 
Posts: n/a

Default Re: Cannot change ARCHIVELOG-MODE via EM - 03-05-2010 , 04:12 AM



On 4 Mar, 13:43, Mladen Gogala <gogala.mla... (AT) gmail (DOT) com> wrote:
Quote:
You're a DBA 2.0? Not a problem. Database can only be switched between
archivelog and noarchivelog when it's mounted and not open. Also, it must
be shut down cleanly. So, at approximately 10:30 AM, do the following:

sqlplus "/ as sysdba"
shutdown immediate
startup mount
alter database archivelog;
alter database open;

Being just an old DBA 1.0 hack, I dunno how to do that in EM.
OP stated version 10.2. The quotes aren't needed:

sqlplus "/ as sysdba" could also be

sqlplus / as sysdba



-g

Reply With Quote
  #10  
Old   
Chris Seidel
 
Posts: n/a

Default Re: Cannot change ARCHIVELOG-MODE via EM - 03-05-2010 , 11:39 AM



On Thu, 04 Mar 2010 13:24:20 +0100, Chris Seidel <cseidel (AT) arcor (DOT) de> wrote:

Quote:
I connected to an Oracle 10.2 via Enterprise Manager (EM) as sysdba.
The checkbox to enable/disable Archivelog-Mode is disabled (grayed out).
Using the HTML-based EM from 10.2 - it works.
Seems to be a problem with the old 9.2 Java-based EM against a 10.2
database.

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.