Need help VB app copying redo log archives

Ask a Question related to Oracle Server, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. Redo Log Question
      When you have your redo logs created as follows: LOGFILE GROUP 1 '/u01/oradata/syrlims/redo01.log' SIZE 10M, GROUP 2...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139