- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- see DBWR trace file
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2004 08:08 AM
тАО04-23-2004 08:08 AM
What does this message mean ( see DBWR trace file )?
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area 320301720 bytes
Fixed Size 735896 bytes
Variable Size 285212672 bytes
Database Buffers 33554432 bytes
Redo Buffers 798720 bytes
Database mounted.
ORA-01157: cannot identify/lock data file 12 - see DBWR trace file
ORA-01110: data file 12: '/pcsi/app/oracle/oradata/orx/DRUG.dbf'
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2004 02:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2004 02:21 PM
тАО04-23-2004 02:21 PM
Re: see DBWR trace file
you may like to refer to Metalink Doc:212053.1, if not see the following:
==================================
fact: Oracle Server - Enterprise Edition
symptom: Alter database open fails
symptom: ORA-01110: data file %s: '%s'
symptom: ORA-01157: cannot identify datafile %s - file not found
change: File Was Physically Deleted From The System
cause: The database control file is corrupt because the file is physically
deleted from the system but not from the control file .
fix:
Find out which tablespace the datafile belongs to and perform the following
actions:
From SQL*Plus or Server Manager :
SQL> Startup mount
SQL> Alter database datafile
SQL> Alter database open ;
SQL> Drop tablespace
( tablespace to which the datafile belonged, first check if any other datafiles
belong to the same tablespace )
Recreate the tablespace afterwards.
==================================
hope this help.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2004 04:39 PM
тАО04-23-2004 04:39 PM
Re: see DBWR trace file
Cause: The background process was either unable to find one of the data files or failed to lock it because the file was already in use. The database will prohibit access to this file but other files will be unaffected. However, the first instance to open the database will need to access all online data files. The accompanying error from the operating system describes why the file could not be identified.
Action: At the operating system level, make the file available to the database. Then either open the database or do an ALTER SYSTEM CHECK DATAFILES.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-24-2004 02:42 AM
тАО04-24-2004 02:42 AM
Re: see DBWR trace file
2. If yes, it seems that you are starting the Oracle instance with a old control file. Since this control has information for the deleted datafile, it is asking for the datafile and hence not able to open the database.
3. Else you may have to carry out the recovery using an online/offline backup and redo/archive log files.
sks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-25-2004 04:10 PM
тАО04-25-2004 04:10 PM
Re: see DBWR trace file
if you want to delete database , don't need to use dbca , just delete all datafiles.
redolog and archivelog and initial parameter file.
shutdown abort
startup mount
select name from v$datafile (to list datafiles)
select member from v$logfile ( to check redolog).
shutdown abort.
then delete those listed above files.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-25-2004 04:28 PM
тАО04-25-2004 04:28 PM
Re: see DBWR trace file
you have deleted the database.If you have deleted the database drug and you should definitely receive weird messages.
Please revert as what you exactly looking for,
Any problems with the database the first step is to check the alert
Please post the alert log and the trace file for the same
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-25-2004 04:31 PM
тАО04-25-2004 04:31 PM
Re: see DBWR trace file
There might be some OS related problems.
First check the alertlog of the database located under bdump directory.
Do attach the trace file.
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-25-2004 05:00 PM
тАО04-25-2004 05:00 PM
Re: see DBWR trace file
More details about the location of the DBWR trace file will be found in the alert.log.
note that it can also be that the kernel parameter for the number of concurrent locks is not high enough.
regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-26-2004 03:35 AM
тАО04-26-2004 03:35 AM
Re: see DBWR trace file
The DBCA process might of had a glitch at the end. I do not remember what it was but there did seem to be a problem at the end that I ignored, sorry
Thanks for your response. I will look into all the suggestions posted here and answer each.
Thank you all for your input.
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 08:04 AM
тАО04-27-2004 08:04 AM
Re: see DBWR trace file
The problem is fixed now.
The DBWR trace file gave me nothing as to what the problem was and the trace function did not seem to be turned on or is at a low setting. Is the trace adjusted in the init.ora file?
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 08:17 AM
тАО04-27-2004 08:17 AM
Re: see DBWR trace file
Thank you for your input.
The issue has been fixed.
I also looked in the alert.log file and see this but this is in a past for now and I will keep an eye out for other clues
ORA-00202: controlfile: 'ora_control5'
ORA-27037: unable to obtain file status
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 08:19 AM
тАО04-27-2004 08:19 AM
Re: see DBWR trace file
Ok, I wont use DBCA.
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 08:22 AM
тАО04-27-2004 08:22 AM
Re: see DBWR trace file
The DBCA, delete datafile operation did have problems at the end and I did not get a screen print of them but I thought it was asking me if I wanted to continue anyway and I did, BAD MOVE!
Any way the problem is fixed :)
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 08:25 AM
тАО04-27-2004 08:25 AM
Re: see DBWR trace file
The issue has be fixed.
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 08:27 AM
тАО04-27-2004 08:27 AM
Re: see DBWR trace file
This was the anser, thank you
Steve