- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ORA-00257: archiver error. Connect internal on...
Operating System - HP-UX
1820271
Members
3446
Online
109622
Solutions
Forums
Categories
Company
Local Language
юдл
back
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
юдл
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
тАО07-21-2008 07:00 PM
тАО07-21-2008 07:00 PM
So, I have not run a backup in about two weeks.
With Oracle GUI (OEM) saves my life since I am not a dba.
Now, I have filled up my archive logs drive slice. It is at 100%.
We are running Oracle streams, and I can not automatically delete backed up archive logs after a backup because streams may still be using it.
So how do I fix the problem!!!
Oracle 10.2.0.2
So can I delete the archive logs... Well, no, because if I remove them from the OS, Oracle will still think they are there or should be there...
OK command line mode, RMAN backup, yikes, not at that level yet.
Then how to remove the archive logs...
Question:
I read a document on streams...
How to identify redo logs that streams no longer needs:
SELECT name
FROM v$archived_log
WHERE next_change# < (SELECT first_scn FROM dba_capture);
Does this mean these can be deleted?
Identify redo logs that Streams has purged:
SELECT file_name
FROM dba_logmnr_purged_log;
Again, does this mean these can be deleted?
The numbers are not the same.
With Oracle GUI (OEM) saves my life since I am not a dba.
Now, I have filled up my archive logs drive slice. It is at 100%.
We are running Oracle streams, and I can not automatically delete backed up archive logs after a backup because streams may still be using it.
So how do I fix the problem!!!
Oracle 10.2.0.2
So can I delete the archive logs... Well, no, because if I remove them from the OS, Oracle will still think they are there or should be there...
OK command line mode, RMAN backup, yikes, not at that level yet.
Then how to remove the archive logs...
Question:
I read a document on streams...
How to identify redo logs that streams no longer needs:
SELECT name
FROM v$archived_log
WHERE next_change# < (SELECT first_scn FROM dba_capture);
Does this mean these can be deleted?
Identify redo logs that Streams has purged:
SELECT file_name
FROM dba_logmnr_purged_log;
Again, does this mean these can be deleted?
The numbers are not the same.
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-22-2008 10:26 AM
тАО07-22-2008 10:26 AM
Re: ORA-00257: archiver error. Connect internal only Oracle streams.
hi,
Do you have spare space on another file system?
(an nfs mounted drive would also do -- temporarily)
If yes, move the files there and link your archivelog directory to the new path.
after that: SQL> archive log start;
This should keep u going.
You should take remedial measure as from this.
hope this helps!
kind regards
yogeeraj
Do you have spare space on another file system?
(an nfs mounted drive would also do -- temporarily)
If yes, move the files there and link your archivelog directory to the new path.
after that: SQL> archive log start;
This should keep u going.
You should take remedial measure as from this.
hope this helps!
kind regards
yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-22-2008 12:00 PM
тАО07-22-2008 12:00 PM
Solution
hey
move the oldest archivelogs to another disk. and then delete them in the rman repository:
login as oracle:
export ORACLE_SID=
rman target / nocatalog
crosscheck archivelog all;
delete noprompt expired archivelog all;
HTH
Regards oviwan
move the oldest archivelogs to another disk. and then delete them in the rman repository:
login as oracle:
export ORACLE_SID=
rman target / nocatalog
crosscheck archivelog all;
delete noprompt expired archivelog all;
HTH
Regards oviwan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-22-2008 01:29 PM
тАО07-22-2008 01:29 PM
Re: ORA-00257: archiver error. Connect internal only Oracle streams.
Sort of...
Moved files over to a larger slice.
alter system set log_archive_dest='';
alter system set DB_RECOVERY_FILE_DEST_SIZE = 20g scope = memory;
alter system set DB_RECOVERY_FILE_DEST='/dbbackups_odb/archive_temp/';
RMAN> CONNECT TARGET /
sql 'alter system archive log current';
RMAN> crosscheck archivelog all;
RMAN> catalog archivelog '/dbbackups_odb/archive_temp/1_106_658249860.dbf',
RMAN> backup archivelog all;
RMAN> allocate channel for maintenance type disk;
RMAN> change archivelog until time 'sysdate-7' delete;
Then changed everything back again.
I have some underlining questions about archives but will post another question regarding this.
Moved files over to a larger slice.
alter system set log_archive_dest='';
alter system set DB_RECOVERY_FILE_DEST_SIZE = 20g scope = memory;
alter system set DB_RECOVERY_FILE_DEST='/dbbackups_odb/archive_temp/';
RMAN> CONNECT TARGET /
sql 'alter system archive log current';
RMAN> crosscheck archivelog all;
RMAN> catalog archivelog '/dbbackups_odb/archive_temp/1_106_658249860.dbf',
RMAN> backup archivelog all;
RMAN> allocate channel for maintenance type disk;
RMAN> change archivelog until time 'sysdate-7' delete;
Then changed everything back again.
I have some underlining questions about archives but will post another question regarding this.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP