Home » Infrastructure » Windows » LRM-00109: could not open Pfile (10g )
icon4.gif  LRM-00109: could not open Pfile [message #454170] Tue, 04 May 2010 05:50 Go to next message
MR[T]
Messages: 62
Registered: March 2009
Member
Hello
I am creating Oracle databse manually .
After making Folder of ,"adump,bdump,cdump,dump,pfile and one folder for controlfiles and datafiles " on 'H' Drive
when I start database with new pfile following error message occurs .

SQL> startup nomount pfile=H:\mydb\pfile\init.ora
LRM-00109: could not open parameter file 'H:\mydb\pfile\init.ora'
ORA-01078: failure in processing system parameters



Pfile :


##############################################################################
# Copyright (c) 1991, 2001, 2002 by Oracle Corporation
##############################################################################
 
###########################################
# Archive
###########################################
log_archive_format=ARC%S_%R.%T
 
###########################################
# Cache and I/O
###########################################
db_block_size=8192
db_file_multiblock_read_count=16
 
###########################################
# Cursors and Library Cache
###########################################
open_cursors=300
 
###########################################
# Database Identification
###########################################
db_domain=""
db_name=mydb
 
###########################################
# Diagnostics and Statistics
###########################################
background_dump_dest=H:\mydb\bdump
core_dump_dest=H:\mydb\cdump
user_dump_dest=H:\mydb\udump
 
###########################################
# File Configuration
###########################################
control_files=("H:\mydb\create\control01.ctl", "H:\mydb\create\control02.ctl", "H:\mydb\create\control03.ctl")
db_recovery_file_dest=H:\oracle\product\10.2.0\flash_recovery_area
db_recovery_file_dest_size=2147483648
 
###########################################
# Job Queues
###########################################
job_queue_processes=10
 
###########################################
# Miscellaneous
###########################################
compatible=10.2.0.3.0
 
###########################################
# Processes and Sessions
###########################################
processes=150
 
###########################################
# SGA Memory
###########################################
sga_target=449839104
 
###########################################
# Security and Auditing
###########################################
audit_file_dest=H:\mydb\adump
remote_login_passwordfile=SHARED
 
###########################################
# Shared Server
###########################################
dispatchers="(PROTOCOL=TCP) (SERVICE=orcl1XDB)"
 
###########################################
# Sort, Hash Joins, Bitmap Indexes
###########################################
pga_aggregate_target=149946368
 
###########################################
# System Managed Undo and Rollback Segments
###########################################
undo_management=AUTO
undo_tablespace=UNDOTBS1
 


Re: LRM-00109: could not open Pfile [message #454175 is a reply to message #454170] Tue, 04 May 2010 06:12 Go to previous messageGo to next message
Michel Cadot
Messages: 68625
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
could not open parameter file 'H:\mydb\pfile\init.ora'

Is file local or remote?
Are privileges appropriate for the instance owner (the one defined on the service NOT the one that starts it)?

Regards
Michel
Re: LRM-00109: could not open Pfile [message #454349 is a reply to message #454170] Wed, 05 May 2010 03:02 Go to previous messageGo to next message
MR[T]
Messages: 62
Registered: March 2009
Member
Its local ...
If i create pfile from spfile , and open database in nomount with newly created pfile then it opens normally , but if i do changes in it as stated above ,then it gives me the above stated error message .
Re: LRM-00109: could not open Pfile [message #454353 is a reply to message #454349] Wed, 05 May 2010 03:19 Go to previous messageGo to next message
Michel Cadot
Messages: 68625
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
if i do changes in it as stated above

I do not see you made any change in the previous post.
Please detail.
But it clearly shows a privilege problem; check them.

Regards
Michel
Re: LRM-00109: could not open Pfile [message #454419 is a reply to message #454170] Wed, 05 May 2010 08:20 Go to previous messageGo to next message
MR[T]
Messages: 62
Registered: March 2009
Member
Thanks for your reply

This is my origial pfile ..If i open database with this pfile it opens normally .

##############################################################################
# Copyright (c) 1991, 2001, 2002 by Oracle Corporation
##############################################################################
 
###########################################
# Archive
###########################################
log_archive_format=ARC%S_%R.%T
 
###########################################
# Cache and I/O
###########################################
db_block_size=8192
db_file_multiblock_read_count=16
 
###########################################
# Cursors and Library Cache
###########################################
open_cursors=300
 
###########################################
# Database Identification
###########################################
db_domain=""
db_name=orcl1
 
###########################################
# Diagnostics and Statistics
###########################################
background_dump_dest=H:\oracle\product\10.2.0\admin\orcl1\bdump
core_dump_dest=H:\oracle\product\10.2.0\admin\orcl1\cdump
user_dump_dest=H:\oracle\product\10.2.0\admin\orcl1\udump
 
###########################################
# File Configuration
###########################################
control_files=("H:\oracle\product\10.2.0\oradata\orcl1\control01.ctl", "H:\oracle\product\10.2.0\oradata\orcl1\control02.ctl", "H:\oracle\product\10.2.0\oradata\orcl1\control03.ctl")
db_recovery_file_dest=H:\oracle\product\10.2.0\flash_recovery_area
db_recovery_file_dest_size=2147483648
 
###########################################
# Job Queues
###########################################
job_queue_processes=10
 
###########################################
# Miscellaneous
###########################################
compatible=10.2.0.3.0
 
###########################################
# Processes and Sessions
###########################################
processes=150
 
###########################################
# SGA Memory
###########################################
sga_target=449839104
 
###########################################
# Security and Auditing
###########################################
audit_file_dest=H:\oracle\product\10.2.0\admin\orcl1\adump
remote_login_passwordfile=EXCLUSIVE
 
###########################################
# Shared Server
###########################################
dispatchers="(PROTOCOL=TCP) (SERVICE=orcl1XDB)"
 
###########################################
# Sort, Hash Joins, Bitmap Indexes
###########################################
pga_aggregate_target=149946368
 
###########################################
# System Managed Undo and Rollback Segments
###########################################
undo_management=AUTO
undo_tablespace=UNDOTBS1
 


but if i edit it ..it gives me following error message .
SQL> startup nomount pfile=H:\mydb\pfile\init.ora
LRM-00109: could not open parameter file 'H:\mydb\pfile\init.ora'
ORA-01078: failure in processing system parameters



Pfile after editing :
##############################################################################
# Copyright (c) 1991, 2001, 2002 by Oracle Corporation
##############################################################################
 
###########################################
# Archive
###########################################
log_archive_format=ARC%S_%R.%T
 
###########################################
# Cache and I/O
###########################################
db_block_size=8192
db_file_multiblock_read_count=16
 
###########################################
# Cursors and Library Cache
###########################################
open_cursors=300
 
###########################################
# Database Identification
###########################################
db_domain=""
db_name=mydb
 
###########################################
# Diagnostics and Statistics
###########################################
background_dump_dest=H:\mydb\bdump
core_dump_dest=H:\mydb\cdump
user_dump_dest=H:\mydb\udump
 
###########################################
# File Configuration
###########################################
control_files=("H:\mydb\create\control01.ctl", "H:\mydb\create\control02.ctl", "H:\mydb\create\control03.ctl")
db_recovery_file_dest=H:\oracle\product\10.2.0\flash_recovery_area
db_recovery_file_dest_size=2147483648
 
###########################################
# Job Queues
###########################################
job_queue_processes=10
 
###########################################
# Miscellaneous
###########################################
compatible=10.2.0.3.0
 
###########################################
# Processes and Sessions
###########################################
processes=150
 
###########################################
# SGA Memory
###########################################
sga_target=449839104
 
###########################################
# Security and Auditing
###########################################
audit_file_dest=H:\mydb\adump
remote_login_passwordfile=SHARED
 
###########################################
# Shared Server
###########################################
dispatchers="(PROTOCOL=TCP) (SERVICE=orcl1XDB)"
 
###########################################
# Sort, Hash Joins, Bitmap Indexes
###########################################
pga_aggregate_target=149946368
 
###########################################
# System Managed Undo and Rollback Segments
###########################################
undo_management=AUTO
undo_tablespace=UNDOTBS1
 



and what are the Instance owner privilege ?

Regards
Mr.T
Re: LRM-00109: could not open Pfile [message #454424 is a reply to message #454419] Wed, 05 May 2010 08:38 Go to previous messageGo to next message
Michel Cadot
Messages: 68625
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
You edit it with which user?
What are the privileges on the file? Before and after?
Check the user that owns the service and check against the users that have privileges on the file.

Regards
Michel
Re: LRM-00109: could not open Pfile [message #454495 is a reply to message #454170] Thu, 06 May 2010 01:52 Go to previous messageGo to next message
MR[T]
Messages: 62
Registered: March 2009
Member
I edit it from Windows Administrator user .
But when i am try to copy pfile from oracle folder to the Drive where My WIndows Is install it is giving me following error message .,
You will need to privide administrator permission to copy this folder 


I have only one user in My windows , and its administrator ,then what type of privilege do i need to perform these tasks .
I am using WINDOWS VISTA Service Pack 1.

Regards
MR.T

[Updated on: Thu, 06 May 2010 02:21]

Report message to a moderator

Re: LRM-00109: could not open Pfile [message #454626 is a reply to message #454495] Thu, 06 May 2010 10:01 Go to previous message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
Since this problem has NOTHING to do with Oracle,
I suggest you post in a Windoze specific forum.
Previous Topic: How to delete Source file used by Oracle external table
Next Topic: need help wid 8.0.6 installation on win 2003 server
Goto Forum:
  


Current Time: Thu Mar 28 17:37:36 CDT 2024