Ask a Question related to Oracle Server, Design and Development.
-
Joe Tseng #1
Need help re: VB app copying redo log archives
I've been asked to write a VB6 app to have any redo archive files
copied to an alternative location where they'll be saved to tape. I
was told this app should be smart enough to leave any open archive
file that is being appended to by the database alone until the next
time the app is run.
Is there any programmatic way to determine if a file is open by
another process? I didn't see any method or property in FSO that did
this. I thought I could perhaps suck in the results of "net file",
but I'm not entirely sure that would work as I do not know how Oracle
copies its redo logs to the .ARC files.
Any useful suggestions will be greatly appreciated.
Joe
Joe Tseng Guest
-
Redo/Undo in Photoshop CS...HELP! :)
Hello all. Does anyone know how to set multiple redo/undo's in Photoshop CS...I am not talking about the history palatte, but the kind that can be... -
redo the nth loop
SpamBait <abuse@federal.gov.au> wrote: Sorry, no answer, because I only know "break" and "continue" as modifiers for control structures. Could... -
VLDB Redo Log Sizing Suggestions
Hi, all, I am looking for some expert guidance on re-sizing my SAP R/3 database re-do logs. I have 8 groups of mirrored logs, each log file is... -
Current redo log corrupted.
I had a disk go bad on a non production database. I have no recent backup p and db is not in archivelog mode. The only db file on the bad disk is my... -
Redo Log Question
When you have your redo logs created as follows: LOGFILE GROUP 1 '/u01/oradata/syrlims/redo01.log' SIZE 10M, GROUP 2... -
marist89 #2
Re: Need help re: VB app copying redo log archives
I would look at v$archived_log to find out which files Oracle thinks has
been archived. Something like:
SELECT name, completion_time
FROM v$archived_log
WHERE completion_time >= trunc(sysdate);
--
Posted via [url]http://dbforums.com[/url]
marist89 Guest



Reply With Quote

