Link to home
Start Free TrialLog in
Avatar of nobleit
nobleit

asked on

disable_archivelogmode

I was trying to disable archive log mode

I shutdown the database

I ws trying to look for the parameter "log_archive_start = false"
in my init.ora I could not find any parameter like that...

If I want to add this parameter in init.ora, which part of init.ora I have to add.

Please help me..
Here is my init.ora

##############################################################################
# Copyright (c) 1991, 2001, 2002 by Oracle Corporation
##############################################################################
 
###########################################
# Cache and I/O
###########################################
db_block_size=8192
 
###########################################
# Cursors and Library Cache
###########################################
open_cursors=300
 
###########################################
# Database Identification
###########################################
db_domain=""
db_name=company
 
###########################################
# File Configuration
###########################################
control_files=("C:\app\Mathew\oradata\company\control01.ctl", "C:\app\Mathew\oradata\company\control02.ctl", "C:\app\Mathew\oradata\company\control03.ctl")
db_recovery_file_dest=C:\app\Mathew\flash_recovery_area
db_recovery_file_dest_size=2147483648
 
###########################################
# Miscellaneous
###########################################
compatible=11.1.0.0.0
diagnostic_dest=C:\app\Mathew
memory_target=803209216
 
###########################################
# Processes and Sessions
###########################################
processes=150
 
###########################################
# Security and Auditing
###########################################
audit_file_dest=C:\app\Mathew\admin\company\adump
audit_trail=db
remote_login_passwordfile=EXCLUSIVE
 
###########################################
# Shared Server
###########################################
dispatchers="(PROTOCOL=TCP) (SERVICE=companyXDB)"
 
###########################################
# System Managed Undo and Rollback Segments
###########################################
undo_tablespace=UNDOTBS1
 
ASKER CERTIFIED SOLUTION
Avatar of MrNed
MrNed
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nobleit
nobleit

ASKER

I did exactly whatever you suggested..
this is what did..

shutdown current db
in the init.ora
log_archive_start=false
saved
startup nomount
alter database noarchivelog;

in the archive log list

it is seen enabled..

Thanks a lot....

Can you please paste your entire session output. Also what version are you running?


Please remove the "log_archive_start=false" parameter all together.

Restart in MOUNT mode (not nomount)
Then

alter database noarchivelog;

Next

alter database openn;

R.
Typo correction:

alter database open;

R.