Backup to Tape ; Some Design questions

Version : We have DBs on 10.2, 11.2 Enterprise Edition
Platform: Solaris 5.10 SPARC
Helloo..
Never worked on Tape before. Currently , all our RMAN Backup Pieces are going to Disk and from there Sysadmin moves it to the tape using TSM.
1. If you were to design a Backup strategy, would you backup to Disk first and then get the Sysadmin to
copy to Tape OR backup directly to Tape?
2. Do you guys backup Level_0 backup on TapeA , Level_1 backups on Tape B
and Archivelogs, Control file , Spfile on TapeC
3. RMAN Backup to Disk or Tape; Which is faster?

1. Best practice directly to tape
Adv: a. Longer retention inexpensive. separate tapes for weekly, monthly and yearly rotation.
b. Can compress
c. Inexpensive for VLDB.
DisAdv: a. Needs Tape vendor (MML) license to directly write to tape.
b. Storing tapes and tape maintenance.
c. Slow process
Writing directly to Disks
Adv:a. For smaller databases with less retention.
b. Faster backups locally
c. Faster restores.
DisAdv:a.Media failure
b.Does not work for VLDB
2. Its expensive to separate tape drives as they come in big sizes.Have maxsetsize or section size set to few GBs for faster read to restore. RMAN can easily identify the files it needs for recovery and the storage vendor have the catalogs that helps. You can separate tapes for permanent retention. Deleting the obsolete backups is messy as you have to load the right tape, operational difficulties.
3. Refer #1.
hth.
Edited by: user11155666 on Jun 2, 2011 5:52 PM

Similar Messages

  • Do I need multiple primary sites? Some design questions..

    I have about a thousand users & devices, across two sites.   Setting up SCCM 2012 R2 and wondering if I need to have multiple primary sites?
    From everything I've read so far, it seems that a single standalone site will handle tens of thousands of users/devices or some very large number, so I'm not sure if I'd ever need a secondary site or what it's function would be - failover, backup, or is
    it just best practice to have different roles spread across multiple servers?
    I was originally thinking of just doing a single primary site on a single server.  But then I'm not sure if my DP should be separate.
    Can someone point me the the right direction to a high level planning document or blog?
    Thanks
    Nathan

    How many clients are there in total? How many at each location? What's the WAN speed in between?
    Multiple primaries are only needed for scale out purposes (>100k clients)!
    Torsten Meringer | http://www.mssccmfaq.de
    About 500 at each, T1 speeds connect the sites, so I want to enable software metering I think.
    Also - if I have a single server with DP role installed, what kind of RAM/HD requirements are needed?  I know this probably varies with the install/features, but are there any ballpark estimates/starting points posted?  Sorry I know this is probably
    on the MS site somewhere, the the volume of information is hard to weed through.   Update, I found some good guidelines here:
    http://myitforum.com/myitforumwp/2012/06/27/sccm-2012-site-hardware-requirements/
    For 1000 or less users, is a single Gb NIC sufficient?  Sounds like it might be?   Also, when using a virtual machine, do you need to still somehow separate SQL logs & data from OS?
    Update #2, looks like that above post answered that question too:
    If you’re in a VM, it’s not sufficient to have a single VHD file, and having the roles split among 4 virtual drives inside that file.  It’s not sufficient to have that single file on a shared set of remote disks.  It’s not sufficient to have that
    single file on a dedicated set of disks, regardless of the number and size of those disks.  Any VM should be configured to only run the OS, and the 3 other spindles should be dedicated sets of disks, attached to the VM.  Otherwise, it’s like painting
    with watercolors in a hurricane…you’re spending a lot of time, looking creative, with zero value.
    But I'll take any follow up comments or recommendations if you have them on proper VM setup.
    Thanks
    Nathan

  • Some design questions

              Hello,
              I got two rather unrelated questions regarding the JMS implementation:
              - Is there any guarantee on when messages become available to consumers?
              Suppose my producer is a session bean which posts a message on a
              queue. Is there any guarantee on whether a QueueBrowser who starts right
              after the transaction is committed will see the message I posted ? Or is
              it possible that some delay causes the message to become visible only some
              time later ?
              - Can QueueBrowsers see messages with a scheduled delivery time that hasn't
              arrived yet ?
              Thanks & Regards,
              Francois Staes.
              Francois Staes
              NetConsult BVBA
              [email protected]
              Tel: +32/3/353.44.22
              Mobile: +32/475/73.74.48
              Fax: +32/3/353.44.06
              

    Hi Francois,
              Since you must process messages in order, then the MDB is the
              only consumer, so why not just cache state in the MDB that
              contains the message-id of the last message processed? If
              a newly received message's message-id matches the stored
              message-id from the previous message, then treat the newly
              received message as an error message.
              This seems much simpler than queue-browser/error-queue.
              Tom, BEA
              P.S. Note that an MDB is destroyed and recreated if the
              onMessage throws a Runtime exception or Error. So you will need to
              put in a "try/catch() {ejbctx.setRollbackOnly(); cacheMessageId(msg);}"
              to prevent the destroy in order to preserve the cached message id
              value...
              Francois Staes wrote:
              > Greg Brail wrote:
              >
              >
              >>>- Is there any guarantee on when messages become available to consumers?
              >>> Suppose my producer is a session bean which posts a message on a
              >>> queue. Is there any guarantee on whether a QueueBrowser who starts
              >>> right after the transaction is committed will see the message I posted
              >>> ? Or is it possible that some delay causes the message to become
              >>> visible only
              >>
              >>some
              >>
              >>> time later ?
              >>
              >>Well, theoretically, there's always going to be "some delay" ;-) In
              >>practice, you should see the message right away. However, if the queue has
              >>a consumer on it, we push messages to that consumer in batches (that's one
              >>of the things that the "messages pending" statistic in the console tells
              >>you about). So, it's possible that the message has already been pushed out
              >>to a consumer, which is why you don't see it.
              >>
              >
              >
              > Thanks for the answer.
              >
              > Let me clarify what I want to achieve: I have an MDB receiving messages
              > about customers. These messages need to be handled in the correct order.
              > But it can happen that some message cannot be processed. Those messages need
              > to be pushed onto a seperate queue (an administrative utility can be used
              > afterwards to requeue them on the default queue so they get re-processed).
              >
              > As soon as there is a message about a certain customer on this error queue,
              > no further messages about that customer should be processed. Hence, from
              > within the MDB we peek on the error queue using a QueueBrowser. If we find
              > anything on there for the same customer as the current message, we
              > immediately stop the processing, and enqueue it on the error queue too.
              >
              > Originally, we tried implementing this using the error-queue feature of WLS.
              > However, moving the messages on the error queue is an asynchronous activity
              > in that case. This means that if a message cannot be processed, and another
              > message arrives right afterwards for the same customer, it might be that
              > the first message isn't yet visible on the error queue....
              >
              > That's why I was thinking about moving them to some kind of error queue
              > manually, and I needed some kind of guarantee that they would be visible
              > immediately.
              >
              > If I understand correctly what you're saying, I think there is no problem
              > because a QueueBrowser is not an asynchronous consumer on the error queue.
              >
              > Thanks for your help,
              >
              > Francois Staes.
              >
              

  • Design Question for table - related columns

    Hi,
    I have some design question about table I am working on.
    Here are the sample fields in the table,
    process_begin_date
    process_approved_by
    process_signed_by
    process_monitor
    process_communication
    the same way I have around 10 groups, for ex
    other_begin_date
    other_approved_by
    other_signed_by
    other_email
    other_something
    Question: Is good have all 50 fields in the same table? or any better idea?

    Hi,
    Number of columns should not be any issue, but, proper normalization may be better for your design and scalability. If you can explain what you are storing in this table, you might get help if you need to have more than 2 tables in this particular scenario.
    If all these fields are related to a single entity, probably this single table is already normalized and needs not to be replaced by two tables.
    Salman

  • Restore the backup from tape to some other server

    Dear All,
    I need to restore the backup from tape to some other server.PLease suggest the command and setp to do that.
    Regards,
    Kumar

    Hi,
    I went through as per your action plan it is giving below error I found a solution on meta doc id 559190.1 but i am not able to understant how to start observiced as it is mentioned in the doc id.
    allocated channel: t1
    channel t1: sid=2386 devtype=SBT_TAPE
    channel t1: Data Protection for Oracle: version 5.4.1.0
    Starting restore at 09-MAY-10
    channel t1: looking for autobackup on day: 20100509
    released channel: t1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 05/09/2010 11:57:01
    ORA-27191: sbtinfo2 returned error
    Additional information: 2
    RMAN>
    Thanks,

  • Backup to tape failed in DPM 2012

    I am new to DPM.
    We have configured a protection group for short term goal with 7 days retention range, Synchronization frequency 6 hours. And recovery points are based on synchronization (means 4 Recovery points per day and DPM will have 28 valid restore points after a
    week...!!??). In long term goals we have configured 2 recovery goals to tape ...  1 recovery point per week on saturday (retention 4 weeks) and 1 recovery point per month (on day 1 with retention range of 1 month).
    Now Im getting PG status "backup to Tape failed" I want to know the process how DPM will check and verify recovery points on disk before writing them to tape.
    Based on my protection group settings, there should be 4 recovery points on disk everyday. but there is something different result...see the below in reply.
    My queries are:
    1) On Saturday weekly tape job, does it require DPM to have valid 28 Recovery points?? What happen if any RP missing.
    2) Due to some issues, if weekely tape backup failed on saturday. Can we resume it on monday,tuesday..with corrective actions??
    3) the DPM process of verifying disk based recovery points before writing them to tape.

    Hi,
    <New questions Snip<
    Q1) For file/volume protection, synchronization is not RP. We have to configure RP creation time manually.
    A1)  Correct, file synchronizations are not recoverable, only "recovery points" are recoverable.
    Q2) For application's (SQL,EXCH,SHAREPOINT) recovery points each synchronization job will create a RP as per synchronization frequency. 
    A2)  Yes, for applications like SQL and Exchange that support incremental backups, then incremental synchronizations are recoverable.
    Q3) If a tape backup is getting failed due to invalid RP on disk, I am creating a manual RP with Express full backup(for databases) and a RP with Incremental(for file/volume share), then resuming tape backup. Is it correct way to do this?
    A3) Yes, A manual Express full for application data or a manual recover point with synchronization for file / share data and that should allow you to manually create a new tape based backup from the alert.
    Q4)How to enable the verify option to check the integrity of the tape backup?
    A4) Simply modify the PG that has tape based protection and while on the "Select Library and tape Details" page, select the option "check backup for data integrity (time consuming operation)". 
    Q5) And what is Co-Location..!!
    A5) Tape co-location allows data from different protection groups to be written to the same tape.  You need to make a tape protection group set using the "Optimize usage" feature under the management - Libraries page of the DPM console.
    See the following TechNet pages.
    Tape Optimization Setup - Create-Modify Protection Group Set
    http://technet.microsoft.com/en-us/library/jj628037.aspx
    Tape Optimization Setup - Advanced Options
    http://technet.microsoft.com/en-us/library/jj628016.aspx
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Differential backups to tape

    We have a number of medium size client sites that we support with an average of 150 users at each site.
    Their file server data repository has now grown to just under 2T . We backup with SCDPM 2012 SP1 onto LTO5 1.5/3T standalone tape units.
    DPM does not allow you to create a Protection Group with just the differential data from the last full backup onto tape.
    We have the desired recovery point options when backing up disk to disk but not directly to tape – could you check if this can be configured somehow.
    Backup windows now span well into business hours due to this and in some cases take more than 24hours to complete – The latter is due to backing up millions of files in our current email archive solution repository.
    We obviously do not require a full daily backup of this data and the backup to disk options requires the client investing in addition hardware for each of it 20 sites which they see as not feasible.

    Hi,
    If you are only performing Disk to Tape (D2T) backups, you do have the option to perform Full+Incremental short term backups.  The Full can be on a weekend day, and perform the incremental backup during the week.
    If you are currently doing Disk to Disk to Tape (D2D2T) - then what you desire is an option to perform Full+Incremental long term backups which DPM does not support.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Problem with backups on Tape

    Could you help me ,I have a problem with backups on tape drive .The error which Windows throws is "BackupTapeFile::UnloadTape: PrepareTape(UNLOCK) failure on backup device '\\.\tape0'. Operating system error 21(failed to retrieve text for this error. Reason: 15105)."
    Does anyone of you have the same problem.Thank you!

    You cannot perform a regular restore/recovery (up to the latest possible point in time), because at this time dropped tablespace is not known to the controlfiles/recocery catalog and therefore not known to RMAN,too. You have to 2 possibilities:
    1. Restore the entire database and recover back in time to before the tablespace is dropped.
    This will cause ALL data within the database to go back in time, not just this tablespace.
    2. Clone the target database to a new location, perform point in time recovery in order to export
    the data of the tablespace for import into the original database. This causes the data of this
    tablespace to be brought back into the production database, not effecting existing (current) data
    in any other area of the database.
    As you can see recovering from a dropped tablespace needs some additional efforts. By the way you also cannot use RMAN's TSPITR functionality.
    Werner

  • -36 errors, can't copy files in finder or backup to tape drive

    Does anyone know what causes -36 errors and how we can eliminate them? We need to backup our files, but have been unable to do so due to -36 I/O errors in Retrospect. Files on which this error is reported by Retrospect will not copy in the finder, either. I think our hard drive may be bad. How can we recover our files if they cannot be backed-up or copied?
    We recently purchased a tape drive for backup, an Exabyte VXA-2 FireWire Tape Drive. We are using VXA-2 V23 (230m) 80GB/160/GB Data Cartridges. I have verified that this drive is supported by Retrospect and that we have the correct tape cartridge. We are backing up one partition of a hard drive that is divided into two partitions. One is the start-up partition, the other is a partition on which we store customer files. We are backing up the partition that stores customer files. The tape drive is attached to and backing up a Macintosh G3 that was recently upgraded from system 9 to OS X 10.3.9 (Panther). The hard drive was not re-formatted before OS X was installed. I have downloaded updates and updated our Retrospect to the latest Retrospect version 6.1.126. I keep getting read errors when trying to backup the customer files partition, although I have ran every good repair program I know of to that partition — TechTool, Disk Warrior and Disk Utility. The tests all say the drive is OK. The only test I have not done recently is a surface scan, as this is an over-night procedure, but plan to do it this evening. A surface scan was done at the beginning of January, but we have continued to have problems. Yesterday morning I ran Disk Utility and it verified that the partition was okay.
    I am fairly certain the problem is not with the tape drive, as a test backup up of some of the problem customer files to a file backup on the startup drive also produced many -36 errors. Also the tape drive worked on another Mac with no -36 errors.
    The following is an excerpt from the log of last night's backup when the program was backing up (this is a very small portion of the whole log, there was a very long list of files it reported read errors on) Following this excerpt is also an excerpt of errors reported while the program was trying to verify the backup:
    ∆ Retrospect version 6.1.126
    automatically launched at 2/20/2006 7:00 PM
    + Retrospect Driver Update, version 6.1.3.101
    + Normal backup using Files Volume M,W,F BU at 2/20/2006 7:00 PM
    To backup set Files Volume M,W,F Set…
    - 2/20/2006 7:00:20 PM: Copying Files Volume…
    Can't read file “•T+•Files Volume”, error -36 (i/o error, bad media?), path: “Files Volume/•T+•Files Volume”.
    Can't read file “•T+•Files Volume(1)”, error -36 (i/o error, bad media?), path: “Files Volume/•T+•Files Volume(1)”.
    Can't read file “•T+•Files Volume(2)”, error -36 (i/o error, bad media?), path: “Files Volume/•T+•Files Volume(2)”.
    Can't read file “BALANCE PLUS AGREEMENT2.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Balance Plus Account Agreements/BALANCE PLUS AGREEMENT2.p65”.
    Can't read file “Balance Plus Agreements”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Balance Plus Account Agreements/Balance Plus Agreements”.
    Can't read file “BALANCE PLUS.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Balance Plus Account Agreements/BALANCE PLUS.p65”.
    Can't read file “2000/#2(U)”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/cdcguide/2000/#2(U)”.
    Can't read file “New Accounts-CSB Final.PMD”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/New Accounts Brochures 10-05/New Accounts-CSB Final.PMD”.
    Can't read file “Pacesetter Ad.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Pacesetter Bank/Pacesetter Hometown Financing/Pacesetter Ad.tiff”.
    Can't read file “SUMMERTIME.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Summertime/SUMMERTIME.p65”.
    Can't read file “RiverFest Comcast1.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/Adelphia/Comcast Logos & Art/RiverFest Comcast1.EPS”.
    Can't read file “CHS logo converted to Photoshop”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/CHS Logo-Various forms/CHS logo converted to Photoshop”.
    Can't read file “CHS logo adjusted/Photoshop.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/CHS Logo-Various forms/Adjusted by Karen/CHS logo adjusted/Photoshop.eps”.
    Can't read file “FWOLO~13.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/FWO logos/FWO Logos Various Formats/EPS/FWOLO~13.EPS”.
    Can't read file “wellnotype.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/well logo for MGH/wellnotype.bmp”.
    Can't read file “spencer logo bw.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/spencer new logo/spencer logo bw.eps”.
    Can't read file “spencer logo.TIF”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/spencer new logo/spencer logo.TIF”.
    Can't read file “DOLCO 900 Master BC 10up old”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-Misc/Dolco Packaging (Bill Cooke)/DOLCO Business Cards/DOLCO BCs/Dolco BCs 10up/DOLCO 900 Master BC 10up old”.
    Can't read file “accutech logo color sep.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Accutech Systems/accutech logo color sep.eps”.
    Can't read file “Kerr 1 backer.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 1 backer.eps”.
    Can't read file “LNT price labels.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Jar Toppers / Gift Promo/email to discount labels/LNT price labels.eps”.
    Can't read file “A-09.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/A-09.DOT”.
    Can't read file “A-14.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/A-14.DOT”.
    Can't read file “B-21.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/B-21.DOT”.
    Can't read file “B-35.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/B-35.DOT”.
    Can't read file “Visor Install fix.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Booklets/Visor Installation Booklet/Visor Install fix.doc”.
    Can't read file “Visor Program (SD- 1030) B.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Booklets/Visor Programming Booklet/Visor Program (SD- 1030) B.doc”.
    Can't read file “BlueConnect_16pgInstall.qxp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/BlueConnect_16pgInstall.qxp”.
    Can't read file “BlueConnect_28pgUserREV.qxp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/BlueConnect_28pgUserREV.qxp”.
    Can't read file “BlueConnect Installation Instructions 2.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BlueConnect Installation Instructions 2.doc”.
    Can't read file “BlueConnect Installation Instructions rev 10-07-05.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BlueConnect Installation Instructions rev 10-07-05.doc”.
    Can't read file “BlueConnectInstall16pg.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BlueConnectInstall16pg.doc”.
    Can't read file “CONSUMER USERS MANUA1.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/CONSUMER USERS MANUA1.doc”.
    Can't read file “BlueConnect Reg Card.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Registration Cards/BC 203 BlueConnect Reg/BlueConnect Reg Card.doc”.
    Can't read file “Living Will insert p1.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Inserts + Circulars/Cresthaven Living Will Insert 1/06/Living Will insert p1.eps”.
    Can't read file “Living Will insert p2.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Inserts + Circulars/Cresthaven Living Will Insert 1/06/Living Will insert p2.eps”.
    Can't read file “Elm Ridge 4-c vets Page_1.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Inserts + Circulars/Elm Ridge Valor Hill/Elm Ridge 4-c vets Page_1.tiff”.
    Can't read file “Elm Ridge 4-c vets Page_2.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Inserts + Circulars/Elm Ridge Valor Hill/Elm Ridge 4-c vets Page_2.tiff”.
    Can't read file “Reply card APv.1 (Vets).eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Mailers & Promo/Acacia / Rose Hills mailers/PDFs Converted to art/Reply card APv.1 (Vets).eps”.
    Can't read file “FinancialPolicyBroch.pub”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/FinancialPolicyBroch.pub”.
    Can't read file “CIO logo color sep.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/Bus Cards / Appt Cards/CIO Logos/Art/CIO logo color sep.eps”.
    Can't read file “FCC Letterhead Indiana.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/FCC (formerly Jaytec)/Letterheads/Envelopes/Memo/FCC Letterhead Indiana.bmp”.
    Can't read file “habitat envelope.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Habitat for Humanity/habitat envelope.p65”.
    Can't read file “Page 2.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/In Touch Dining (Table Talk)/Platter Chatter - Don Halls/Fix in Quark then print to EPS/Page 2.eps”.
    Can't read file “brochure”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/My Hair Broker/brochure”.
    Can't read file “brochure-1”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/My Hair Broker/brochure-1”.
    Can't read file “brochure”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/My Hair Broker/My Hair Broker recovered files/brochure”.
    Can't read file “GIFTBOX.epsbitmap”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/CHARLES/MISC FILES/GIFTBOX.epsbitmap”.
    Can't read file “ASC LetterHeadFinal.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Accutech/original art (emailed)/ASC LetterHeadFinal.EPS”.
    Can't read file “TSC 104 and 111.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms/Fixed Files/TSC 104 and 111.pdf”.
    Can't read file “TSC 116 Initial Note.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms/Fixed Files/TSC 116 Initial Note.pdf”.
    Can't read file “sptslogo screen sep.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Sports Physical Therapy (SPTS)/logos & art/sptslogo screen sep.eps”.
    Can't read file “sptslogo spot sep cool gray.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Sports Physical Therapy (SPTS)/logos & art/sptslogo spot sep cool gray.eps”.
    Can't read file “A Stout BCs 12 up all names”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/A Stout Furniture & Bedding/Business Cards/A Stout BCs 12 up all names”.
    Can't read file “bifold on grstrosprep2.qxd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Old Files (backup)/03DET0609 (CGIC Prep 4)/bifold on grstrosprep2.qxd”.
    Can't read file “MAP_DUO.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Old Files (backup)/04DET0076 (CGIC Prep 1)/Pictures/MAP_DUO.tif”.
    Can't read file “bifold on grstrosprep2.qxd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/03DET0609 (CGIC Prep 4)/bifold on grstrosprep2.qxd”.
    Can't read file “Beth Business Card.2”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/Beth Business Card.2”.
    Can't read file “frankfort map gray.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/frankfort map gray.tif”.
    Can't read file “lafayette map.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/lafayette map.tif”.
    Can't read file “white county gray.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/white county gray.tif”.
    Can't read file “Hoosier Lottery HL-ARC.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Hoosier Lottery/Age Restriction Cards 2005/Hoosier Lottery HL-ARC.pmd”.
    Can't read file “HCI_card2.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Hunter Construction Inc./HCI_card2.tiff”.
    Can't read file “IOH 016 steroid epideral inject”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/IOH - Indy Ortho Hospital/IOH 016 steroid epideral inject”.
    Can't read file “IOHLOGO.TIF”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/IOH - Indy Ortho Hospital/Indiana Ortho Hospital logos/logo file from customer/IOHLOGO.TIF”.
    Can't read file “OIFI 610 Reg Env Fishers.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/Envelopes/OIFI 610 Reg Env Fishers.pmd”.
    Can't read file “ORTHO 542 Memo master stock 9up”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/ORTHO forms/ORTHO 542 Memo master stock 9up”.
    Can't read file “Ortho 542 memo NEW master.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/ORTHO forms/Ortho 542 memo NEW master.pmd”.
    Can't read file “SESC 042 Local Discharge.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/SESC Southeast Surgery Center/SESC 042 Local Discharge.pmd”.
    Can't read file “Richmond Baking from scan.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Richmond Baking/Richmond Baking from scan.eps”.
    Can't read file “RPL 300C 4-02.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Richmond Power & Light/RPL 300C 4-02.p65”.
    Can't read file “RPL lighter.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Richmond Power & Light/RPL lighter.pmd”.
    Can't read file “Burlington BLUE.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Unified Group Services/Burlington Motor Carriers/Burlington BLUE.eps”.
    Can't read file “Burlington RED.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Unified Group Services/Burlington Motor Carriers/Burlington RED.eps”.
    Can't read file “WW-SUMMER EVENT Postcard.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Wilson Wines/WW-SUMMER EVENT Postcard.p65”.
    Can't read file “OSBORNS.TIF”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Debbie/Albany EMS/AEMS spaghetti poster/OSBORNS.TIF”.
    Can't read file “BCH 7019 Physicians Orders”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Debbie/Blackford Community Hospital/BCH forms/BCH 7019 Physicians Orders”.
    Can't read file “BCH 7066 Outcomes Walk Test”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Debbie/Blackford Community Hospital/BCH forms/BCH 7066 Outcomes Walk Test”.
    EXCERPT FROM LOG WHEN TRYING TO VERIFY BACKUP:
    2/20/2006 10:51:12 PM: Comparing Files Volume…
    Can't read file “CS Booklet Acknow Form.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/AAAA/CS Booklet Acknow Form.pmd”.
    File “BV Layout First Quarter.pmd”: miscompare at data offset 221,055, path: “Files Volume/Customer files/Bill Morris/BV Layout First Quarter.pmd”.
    Can't read file “E FUNDS TRANSFER AGREE.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/E FUNDS TRANSFER AGREE.doc”.
    Can't read file “BALANCE PLUS AGREEMENT2”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Balance Plus Account Agreements/BALANCE PLUS AGREEMENT2”.
    Can't read file “Blackford Golf Club.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Blackford Golf Club/Blackford Golf Club.p65”.
    Can't read file “INVESTMENT BROCHURE 7-04.PMD”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Investment Brochure/INVESTMENT BROCHURE 7-04.PMD”.
    Can't read file “Pacesetter Stmt-Hartford 04 old”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Pacesetter Bank/Hartford City/Pacesetter Stmt-Hartford 04 old”.
    Can't read file “TELEBANKING.P65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Pacesetter Tele-Banking/TELEBANKING.P65”.
    Can't read file “ *chs FHC logos (USE ME)”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/CHS Logo-Various forms/ *chs FHC logos (USE ME)”.
    Can't read file “FWOLOG~D.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/FWO logos/FWO Logos Various Formats/EPS/FWOLOG~D.EPS”.
    Can't read file “FWOLO~18.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/FWO logos/FWO Logos Various Formats/EPS/FWOLO~18.EPS”.
    Can't read file “Jiont Replacement Logo.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/logos/Jiont Replacement Logo.bmp”.
    File “SV Name 1 line 8x40p.tif”: miscompare at data offset 994,239, path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/St. Vincent Scans/Logos/SV Name 1 line 8x40p.tif”.
    Can't read file “SV-birds to side, no addr.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/St. Vincent Scans/Logos/SV-birds to side, no addr.tiff”.
    Can't read file “Spencer logo bw.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/spencer new logo/Spencer logo bw.bmp”.
    Can't read file “spencer printing”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/spencer new logo/spencer printing”.
    File “Appt Cards No Logo 10-up”: miscompare at data offset 94,208, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/Appointment Cards/Appt Cards No Logo 10-up”.
    File “BMA 202,BMA 2114 10up Musselman”: miscompare at data offset 52,622, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/Appointment Cards/BMA 202,BMA 2114 10up Musselman”.
    File “BMA Non-Security RX Pads”: miscompare at data offset 81,922, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/RX Pads/White Scripts, Non-Sec, Horiz/BMA Non-Security RX Pads”.
    File “BMA 2150 White Script-Singleton”: miscompare at data offset 606,218, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/RX Pads/White Scripts, Non-Sec, Verticl/BMA 2150 White Script-Singleton”.
    File “BMA 2170 White Script-C Frazier”: miscompare at data offset 512,002, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/RX Pads/White Scripts, Non-Sec, Verticl/BMA 2170 White Script-C Frazier”.
    File “BMA 2186 White Script-Laur”: miscompare at data offset 577,586, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/RX Pads/White Scripts, Non-Sec, Verticl/BMA 2186 White Script-Laur”.
    Can't read file “DOLCO BC Ramos/Hernandez”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-Misc/Dolco Packaging (Bill Cooke)/DOLCO Business Cards/DOLCO BCs/Dolco BCs 10up/DOLCO BC Ramos/Hernandez”.
    Can't read file “accutech ACT 201 Letterhead”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Accutech Systems/accutech ACT 201 Letterhead”.
    Can't read file “Allied rent no more Postcard”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Allied Home Mortgage/Rent No More postcard/Allied rent no more Postcard”.
    Can't read file “coupon grouping copy.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Alltrista 3 Fair Coupon/Fair coupon/Art/coupon grouping copy.eps”.
    Can't read file “Kerr 1.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 1.eps”.
    Can't read file “Kerr 3 backer.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 3 backer.eps”.
    Can't read file “Kerr 3.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 3.eps”.
    Can't read file “Kerr 5 backer.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 5 backer.eps”.
    Can't read file “Kerr 5 blue backer.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 5 blue backer.eps”.
    Can't read file “Kerr 5 blue.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 5 blue.eps”.
    Can't read file “Kerr 5.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 5.eps”.
    Can't read file “JAR 402 P&C Env. Corporate”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Letterheads & Envelopes/Envelopes/JAR 402 P&C Env. Corporate”.
    Can't read file “Elite Presentation Cover”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Misc/Elite Presentation Cover”.
    File “Consumer DCRA (3)”: miscompare at data offset 13,874, path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/JARDEN Benefit Choices/Consumer Manufacturing Cloquet/(we don't print these sections)/Consumer DCRA (3)”.
    Can't read file “A-06.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/A-06.DOT”.
    Can't read file “Visor Program fix.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Booklets/Visor Programming Booklet/Visor Program fix.doc”.
    Can't read file “BC User Manual rev 10-07-05.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BC User Manual rev 10-07-05.doc”.
    Can't read file “BC User Manual rev 10-24-05.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BC User Manual rev 10-24-05.doc”.
    Can't read file “Homelink WARRANTY.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Registration Cards/BC 202 Home Link Reg/Homelink WARRANTY.doc”.
    Can't read file “Open House Card 2 up back”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bill Frazier Mobile Homes/Open House Card 2 up back”.
    Can't read file “Elite's presort permit 228.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Mailers & Promo/Elite's presort permit 228.p65”.
    File “GAM 100 Gyn Assoc Chg Slip”: miscompare at data offset 30,334, path: “Files Volume/Customer files/Elite/Brad/CHARGE SLIPS/GAM 100 Gyn Assoc Chg Slip”.
    Can't read file “CIO BC Amy Myers Train.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/Bus Cards / Appt Cards/Individuals' BCs/CIO BC Amy Myers Train.pmd”.
    Can't read file “CIO 281 Medical Release Form”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/CIO Forms/CIO 281 Medical Release Form”.
    Can't read file “CIO 106 P & OT newest.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/CIO Forms/CIO 106/CIO 106 P & OT newest.pdf”.
    Can't read file “CIO COLOR TABS 3 BANK”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/Misc/CIO COLOR TABS/CIO COLOR TABS 3 BANK”.
    Can't read file “Cisco multi-ch 2-color.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Comcast/Flyers/Digital / Internet Flyers/6x9 69.95 Limited-time offer/Cisco multi-ch 2-color.eps”.
    Can't read file “Z4935.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Comcast/Race for Cure ad/Z4935.eps”.
    File “Comcast Rates Multi 6up”: miscompare at data offset 2,510,558, path: “Files Volume/Customer files/Elite/Brad/Comcast/Rate Cards & Channel Line-ups/ Comcast Rates & Lineups 2006/ trash before next run/Comcast Rates Multi 6up”.
    Can't read file “Comcast Samples Digi Channels-5”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Comcast/Rate Cards & Channel Line-ups/ Comcast Rates & Lineups 2006/ trash before next run/Comcast Samples Digi Channels-5”.
    Can't read file “FCC Bus Card logo.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/FCC (formerly Jaytec)/Business Cards/FCC Bus Card logo.bmp”.
    File “FGC 200 PRAYER CHAIN”: miscompare at data offset 110,530, path: “Files Volume/Customer files/Elite/Brad/Four Square Church/FGC 200 PRAYER CHAIN”.
    Can't read file “Icon◊”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/In Touch Dining (Table Talk)/Icon◊”.
    Can't read file “Customer Service Record partial”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Marcum Racing/Customer Service Record partial”.
    Can't read file “PE 400 #10 Window Envelope”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Peerless Electric/PE 400 #10 Window Envelope”.
    Can't read file “spartech.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Spartech/spartech logos/spartech.doc”.
    Can't read file “neb_Logo.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Northeast Bank/neb_Logo.bmp”.
    Can't read file “logo1web.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms/logo1web.tif”.
    Can't read file “TSC 200 RX Pad”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms/Fixed Files/TSC 200 RX Pad”.
    Can't read file “TSC 104 and 111.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms 2/04/TSC 104 and 111.pdf”.
    Can't read file “TSC 105 General Progress.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms 2/04/TSC 105 General Progress.pdf”.
    Can't read file “sptslogo spot sep.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Sports Physical Therapy (SPTS)/logos & art/sptslogo spot sep.eps”.
    Can't read file “A Stout BCs 10 up all names”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/A Stout Furniture & Bedding/Business Cards/A Stout BCs 10 up all names”.
    Can't read file “A Stout BCs 12 up Sales”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/A Stout Furniture & Bedding/Business Cards/A Stout BCs 12 up Sales”.
    Can't read file “A Stout BCs 12 up template”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/A Stout Furniture & Bedding/Business Cards/A Stout BCs 12 up template”.
    Can't read file “AERCO Bryant 8-09-05.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/AERCO/AHC Bryant New Equip Line/AERCO Bryant 8-09-05.pmd”.
    Can't read file “6HR_DRINK.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Old Files (backup)/03DET0609 (CGIC Prep 4)/Pictures/6HR_DRINK.tif”.
    Can't read file “reprint-colonos prep2 fix.qxd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Old Files (backup)/04DET0076 (CGIC Prep 1)/reprint-colonos prep2 fix.qxd”.
    Can't read file “6HR_DRINK.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/03DET0609 (CGIC Prep 4)/Pictures/6HR_DRINK.tif”.
    Can't read file “6HR_FOOD.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/03DET0609 (CGIC Prep 4)/Pictures/6HR_FOOD.tif”.
    Can't read file “reprint-colonos prep2 fix.qxd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/04DET0076 (CGIC Prep 1)/reprint-colonos prep2 fix.qxd”.
    Can't read file “MAP_DUO.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/04DET0076 (CGIC Prep 1)/Pictures/MAP_DUO.tif”.
    Can't read file “Beth Business Card.1”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/Beth Business Card.1”.
    Can't read file “Lafayette_Logo.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/Lafayette_Logo.tif”.
    Can't read file “ECG 302 (partial)”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/ECG Forms/ECG 302 (partial)”.
    Can't read file “ECG 532 Surgery Chart Bond LH”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/ECG Forms/ECG 532 Surgery Chart Bond LH”.
    Can't read file “carrick.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Memo Pads/ECG 506 From Desk Of/carrick.eps”.
    Can't read file “ECG 506 note pad Steph Carrick”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Memo Pads/ECG 506 From Desk Of/ECG 506 note pad Steph Carrick”.
    Can't read file “Confetti Canopy3.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Refer A Friend LVC Card/Confetti Canopy3.tif”.
    Can't read file “ECG RX 03 B Cyclogel/Isopto”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/RX Pads/ECG RX 03 B Cyclogel/Isopto”.
    Can't read file “ECG RX 03 Cyclogel/Homatropine”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/RX Pads/ECG RX 03 Cyclogel/Homatropine”.
    Can't read file “ECG RX 13 Eye Center Group Sec.”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/RX Pads/ECG RX 13 Eye Center Group Sec.”.
    Can't read file “ECG RX-17 Ocuflox 11/02”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/RX Pads/ECG RX 17/ECG RX-17 Ocuflox 11/02”.
    Can't read file “Hoosier Lottery HL-ARC 8up.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Hoosier Lottery/Age Restriction Cards 2005/Hoosier Lottery HL-ARC 8up.pmd”.
    Can't read file “oibcards3.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/IOH - Indy Ortho Hospital/Indiana Ortho Hospital logos/oibcards3.eps”.
    File “calendarVickersFinal.p65”: miscompare at data offset 2,002,278, path: “Files Volume/Customer files/Elite/Dave/Neff Engineering/Neff Engineering Other/calendarVickersFinal.p65”.
    File “Norfleet BC Jason 10up”: miscompare at data offset 1,760,878, path: “Files Volume/Customer files/Elite/Dave/norfleet BC/Norfleet BC Jason 10up”.
    File “BCs-New-PM6.5”: miscompare at data offset 2,111,727, path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/Business Cards/BCs-New-PM6.5”.
    Can't read file “OIK Miller Only”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/Business Cards/BCs-all old ones/OIK/OIK Miller Only”.
    The only suggestion I have come across is to copy the files to another drive, but this is impossible because the problem files cannot be copied. If anyone has any other suggestion for fixing this, I would appreciate any input. Thanks.
    Mac G3 Blue & White 300 mhz   Mac OS X (10.3.9)   Original hard drive replaced with a 120 GB Maxtor 6Y120P0

    Tech Tool, Disk Warrior, and Disk Utility all work to make sure the directory is Okay. They do not read every block.
    I think you should do the surface scan you spoke of. What program do you use for this?
    If you cannot copy a file in the Finder without an I/O error, the file is damaged or the drive had bad blocks.
    Be sure you also downloaded the drivers module when you updated retrospect.

  • Design question: Scheduling a Variable-timeslot Resource

    I originally posted this in general java programming, because this seemed like a more high-level design descussion. But now I see some class design questions. Please excuse me if this thread does not belong here (this is my first time using the forum, save answering a couple questions).
    Forum,
    I am having trouble determining a data structure and applicable algorithm (actually, even more general than the data structure -- the general design to use) for holding a modifiable (but more heavily read/queried than updated), variable-timeslot schedule for a given resource. Here's the situation:
    Let's, for explanation purposes, say we're scheduling a school. The school has many resources. A resource is anything that can be reserved for a given event: classroom, gym, basketball, teacher, janitor, etc.
    Ok, so maybe the school deal isn't the best example. Let's assume, for the sake of explanation, that classes can be any amount of time in length: 50 minutes, 127 minutes, 4 hours, 3 seconds, etc.
    Now, the school has a base operation schedule, e.g. they're open from 8am to 5pm MTWRF and 10am to 2pm on saturday and sunday. Events in the school can only occur during these times, obviously.
    Then, each resource has its own base operation schedule, e.g. the gym is open from noon to 5pm MTWRF and noon to 2pm on sat. and sun. The default base operation schedule for any resource is the school which "owns" the resource.
    But then there are exceptions to the base operation schedule. The school (and therefore all its resources) are closed on holidays. The gym is closed on the third friday of every month for maintenance, or something like that. There are also exceptions to the available schedule due to reservations. I've implemented reservations as exceptions with a different status code to simplify things a little bit: because the basic idea is that an exception is either an addition to or removal from the scheduleable times of that resource. Each exception (reservation, closed for maintenance, etc) can be an (effectively) unrestricted amount of time.
    Ok, enough set up. Somehow I need to be able to "flatten" all this information into a schedule that I can display to the user, query against, and update.
    The issue is complicated more by recurring events, but I think I have that handled already and can make a recurring event be transparent from the application point of view. I just need to figure out how to represent this.
    This is my current idea, and I don't like it at all:
    A TimeSlot object, holding a beginning date and ending date. A data structure that holds list of TimeSlot objects in order by date. I'd probably also hold an index of some sort that maps some constant span of time to a general area in the data structure where times around there can be found, so I avoid O(n) time searching for a given time to find whether or not it is open.
    I don't like this idea, because it requires me to call getBeginningDate() and getEndDate() for every single time slot I search.
    Anyone have any ideas?

    If I am correct, your requirement is to display a schedule, showing the occupancy of a resource (open/closed/used/free and other kind of information) on a time line.
    I do not say that your design is incorrect. What I state below is strictly my views and should be treated that way.
    I would not go by time-slot, instead, I would go by resource, for instance the gym, the class rooms (identified accordingly), the swimming pool etc. are all resources. Therefore (for the requirements you have specified), I would create a class, lets say "Resource" to represent all the resources. I would recommend two attributes at this stage ("name" & "identifier").
    The primary attribute of interest in this case would be a date (starting at 00:00hrs and ending at 24:00hrs.), a span of 24hrs broken to the smallest unit of a minute (seconds really are not very practical here).
    I would next encapsulate the availability factor, which represents the concept of availability in a class, for instance "AvailabilityStatus". The recommended attributes would be "date" and "status".
    You have mentioned different status, for instance, available, booked, closed, under-maintainance etc. Each of these is a category. Let us say, numbered from 0 to n (where n<128).
    The "date" attribute could be a java.util.Date object, representing a date. The "status", is byte array of 1440 elements (one element for each minute of the day). Each element of the byte array is populated by the number designation of the status (i.e, 0,1,2...n etc.), where the numbers represent the status of the minute.
    The "Resource" class would carry an attribute of "resourceStatus", an ordered vector of "ResourceStatus" objects.
    The object (all the objects) could be populated manually at any time, or the entire process could be automated (that is a separate area).
    The problem of representation is over. You could add any number of resources as well as any number of status categories.
    This is a simple solution, I do not address the issues of querying this information and rendering the actual schedule, which I believe is straight forward enough.
    It is recognized that there are scope for optimizations/design rationalization here, however, this is a simple and effective enough solution.
    regards
    [email protected]

  • SGA Size for 8.1.7.4 32 bit? , some Interview Questions

    Hi buddies,
    I got some interview questions, might be simple for geeks in DBA. I am in need of answers. Could anyone help me.
    Thanks,
    Raaj
    1) Does windows NT support direct I/O?
    Answer: Choose one of the answers that apply
    A: No, only AIO
    B: Yes, depending on hardware.
    C: Yes.
    D: No.
    2) Can you take a coldbackup from solaris and use it on windows NT?
    Answer: Choose one of the answers that apply
    A: Yes.
    B: Yes if RMAN backup performed from NT server.
    C: Yes, after running RMAN convert.
    D: No.
    3) All of the following will alter the number of checkpoints that occur in one hour on the database, except one. Which is it?
    Answer: Choose one of the answers that apply
    A: Decreasing tablespace size
    B: Decreasing size of redo log members
    C: Setting LOG_CHECKPOINT_INTERVAL greater than the size of the redo log file
    D: Setting LOG_CHECKPOINT_TIMEOUT to zero
    4) The DBA is attempting to back up the Oracle database control file. After
    issuing the ALTER DATABASE BACKUP CONTROLFILE TO TRACE command, where can the DBA find the backup control file creation materials Oracle created for him or her ?
    Answer: Choose one of the answers that apply
    A: USER_DUMP_DEST
    B: LOG_ARCHIVE_DEST
    C: CORE_DUMP_DEST
    D: BACKGROUND_DUMP_DEST
    5) What is the most important action a DBA must perform after changing the database from NOARCHIVELOG TO ARCHIVELOG?
    Answer: Choose one of the answers that apply
    A: Shutdown normal and restart the database
    B: Perform a full logical database backup
    C: Perform a full offline database backup
    D: Manually switch the log files
    6) Which of the following choices lists an ALTER USER option that can be executed by the user herself or himself?
    Answer: Choose one of the answers that apply
    A: DEFAULT TABLESPACE
    B: IDENTIFIED BY
    C: TEMPORARY TABLESPACE
    D: PROFILE
    7) You need to view the initialization parameter settings for your Oracle
    database. Which of the following choices does not identify a method
    you can use to obtain values set for your initialization parameters?
    Answer: Choose one of the answers that apply
    A: Issue SELECT * FROM DBA_PARAMETERS; from SQL*Plus
    B: Issue SELECT * FROM V$PARAMETER; from SQL*Plus
    C: Issue SHOW PARAMETERS from Server Manager
    D: Use OEM Instance Manager
    8) As a result of a media failure, the current online redo log group is corrupted, the database crashes, as the current online group is inaccessible. Which type of incomplete recovery are you most likely to perform ?
    Answer: Choose one of the answers that apply
    A: Change-based
    B: Time-based
    C: Recovery using a backup control file
    D: Cancel-based
    9) User SNOW executes the following statement: SELECT * FROM EMP. This
    statement executes successfully, and SNOW can see the output. Table
    EMP is owned by user REED. What object would be required in order for
    this scenario to happen ?
    Answer: Choose one of the answers that apply
    A: User SNOW would need the role to view table EMP.
    B: User SNOW would need the privileges to view table EMP.
    C: User SNOW would need a synonym for table EMP.
    D: User SNOW would need the password for table EMP.
    10) Which one of the following statements is true?
    Answer: Choose one of the answers that apply
    A: The request queue is common, and the response queue is different for all the dispatchers.
    B: The request queue and response queue are different for all the dispatchers.
    C: The request queue is different, and response queue is common for all the dispatchers.
    D: The request queue and response queue are common for all the dispatchers.
    11) What is the largest SGA size for 8.1.7.4 32 bit?
    Answer: Choose one of the answers that apply
    A: approximately 2GB
    B: approximately 3.5GB
    C: approximately 4GB
    D: approximately 8GB
    E: approximately 16GB
    12) The DBA is about to perform some administrative tasks. Specifying the
    OPTIMAL parameter has which of the following appropriate uses?
    Answer: Choose one of the answers that apply
    A: Limiting concurrent users
    B: Limiting concurrent transactions
    C: Limiting growth of rollback segments
    D: Limiting growth of tables
    13) If the DBA wants to find information about how often transactions are
    wrapping transaction information between multiple rollback segment
    extents, where would the DBA look to find that information?
    Answer: Choose one of the answers that apply
    A: DBA_ROLLBACK_SEGS
    B: V$ROLLSTAT
    C: V$ROLLNAME
    D: DBA_SEGMENTS
    14) You have 30 rollback segments in your database, for which
    TRANSACTIONS_PER_ ROLLBACK_SEGMENT is set to 49 and
    TRANSACTIONS is set to 1000. During periods of heavy usage, about how many rollback segments will be actively used by Oracle?
    Answer: Choose one of the answers that apply
    A: 50
    B: 60
    C: 20
    D: 30
    15) The DBA has a table created with the following statement:
    CREATE TABLE EMPL
    (EMPID NUMBER(10),
    LASTNAME VARCHAR2(40),
    RESUME LONG RAW);
    The DBA attempts to issue the following statement:
    ALTER TABLE EMPL
    ADD ( PERF_APPRAISE LONG);
    What happens?
    Answer: Choose one of the answers that apply
    A: The statement succeeds.
    B: The statement succeeds, but column is added as VARCHAR2.
    C: The statement fails.
    D: The statement adds a disabled constraint.
    16) The primary key of the EMP table has three columns, EMPID, LASTNAME,
    and FIRSTNAME. You issue the following SELECT statement:
    SELECT * FROM EMP WHERE LASTNAME = 'HARRIS' AND FIRSTNAME = 'BILLI'
    AND EMPID = '5069493';
    Where would you look to see if this query will use the index associated
    with the primary key?
    Answer: Choose one of the answers that apply
    A: DBA_IND_COLUMNS
    B: DBA_TAB_COLUMNS
    C: DBA_INDEXES
    D: DBA_CLU_COLUMNS
    17) You are configuring your index to be stored in a tablespace. Which of the
    following storage parameters are not appropriate for indexes?
    Answer: Choose one of the answers that apply
    A: OPTIMAL
    B: INITIAL
    C: PCTINCREASE
    D: NEXT
    18) You need to set up auditing in an order entry and product shipment
    application so that when the ORDER_STATUS column in the ORDERS
    table changes to ‘SHIPPED’, a record is placed in a special table associated
    with a part of the application that gives sales representatives a daily list
    of customers to call on a follow-up to make sure the customer is satisfied
    with the order. Which of the following choices represents the best way
    to perform this auditing?
    Answer: Choose one of the answers that apply
    A: Statement auditing
    B: Object auditing
    C: Audit by access
    D: Value-based auditing
    19) Information in the buffer cache is saved back to disk in each of the
    following situations except one. In which situation does this not occur?
    Answer: Choose one of the answers that apply
    A: When a time-out occurs
    B: When a log switch occurs
    C: When the shared pool is flushed
    D: When a checkpoint occurs
    20) In order to allow remote administration of users and tablespaces on an Oracle database, which of the following types of files must exist in the database?
    Answer: Choose one of the answers that apply
    A: Password file
    B: Initialization file
    C: Datafile
    D: Control file
    E: Nothing, SYSDBA privileges are not required for these actions.
    21) You are planning the storage requirements for your database. Which of the following is an effect of maintaining a high PCTFREE for a table?
    Answer: Choose one of the answers that apply
    A: Oracle will manage filling data blocks with new records more actively.
    B: Oracle will manage filling data blocks with new records less actively.
    C: Oracle will leave more space free in data blocks for existing records.
    D: Oracle will leave less space free in data blocks for existing records.
    22) You manage database access privileges with roles where possible.
    You have granted the SELECT_MY_TABLE role to another role, called
    EMP_DEVELOPER. To view information about other roles that may be
    granted to EMP_DEVELOPER, which of the following dictionary views
    are appropriate?
    Answer: Choose one of the answers that apply
    A: DBA_ROLE_PRIVS
    B: DBA_TAB_PRIVS
    C: USER_SYS_PRIVS
    D: ROLE_ROLE_PRIVS
    23) In order to set your SQL*Plus session so that your NLS_DATE_FORMAT
    information is altered in a specific way every time you log into Oracle,
    what method would be used?
    Answer: Choose one of the answers that apply
    A: Setting preferences in the appropriate menu option
    B: Creating an appropriate LOGIN.SQL file
    C: Issuing the ALTER USER statement
    D: Issuing the ALTER TABLE statement
    24) You create a sequence with the following statement:
    CREATE SEQUENCE MY_SEQ
    START WITH 394
    INCREMENT BY 12
    NOMINVALUE
    NOMAXVALUE
    NOCACHE
    NOCYCLE;
    Two users have already issued SQL statements to obtain NEXTVAL, and
    four more have issued SQL statements to obtain CURRVAL. If you issue a
    SQL statement to obtain the NEXTVAL, what will Oracle return?
    Answer: Choose one of the answers that apply
    A: 406
    B: 418
    C: 430
    D: 442

    1.-
    2.c
    3.a
    4.a
    5.c
    6.b
    7.a
    8.d
    9.b
    10.a -
    11.a
    12.c
    13.b
    14.d
    15.c
    16.a -
    17.a
    18.d
    19.c
    20.a
    21. -
    22.d
    23.b
    24.?
    hope it helps u.
    Thanks
    Kuljeet

  • I backed up everything to icloud, wiped my phone, synced to that backup, and only some of my photos are there. How do I get those photos back?

    I backed up everything to icloud, wiped my phone, synced to that backup, and only some of my photos are there. How do I get those photos back?
    I went to apple store and they walked me through this except for the syncing part. I went to sync everything at home and a lot of my photos aren't there. When I scroll all the way down, its just a loading spiral thing.
    Also, now I have new stuff, that I don't want to get deleted.
    Is there some way to put my icloud pictures on my computer as well?

    If the restore process is done, or seems to have stalled, and it didnt' restore your camera roll photos, all you can do is try restoring the backup again.  If it's still restoring, go to Settings>iCloud>Storage & Backup and tap Stop Restoring at the bottom.  Then go to Settings>General>Reset, tap Erase All Content and Settings, go through the setup screens again and when given the option, choose Restore from iCloud backup and follow the prompts.
    Be sure your phone is connected to wifi and your charger while it is restoring the backup.  You might want to move it closer to your wifi router for the strongest signal possible.

  • LDAP design question for multiple sites

    LDAP design question for multiple sites
    I'm planning to implement the Sun Java System Directory Server 5.2 2005Q1 for replacing the NIS.
    Currently we have 3 sites with different NIS domains.
    Since the NFS over the WAN connection is very unreliable, I would like to implement as follows:
    1. 3 LDAP servers + replica for each sites.
    2. Single username and password for every end user cross those 3 sites.
    3. Different auto_master, auto_home and auto_local maps for three sites. So when user login to different site, the password is the same but the home directory is different (local).
    So the questions are
    1. Should I need to have 3 domains for LDAP?
    2. If yes for question 1, then how can I keep the username password sync for three domains? If no for question 1, then what is the DIT (Directory Infrastructure Tree) or directory structure I should use?
    3. How to make auto map work on LDAP as well as mount local home directory?
    I really appreciate that some LDAP experta can light me up on this project.

    Thanks for your information.
    My current environment has 3 sites with 3 different NIS domainname: SiteA: A.com, SiteB:B.A.com, SiteC:C.A.com (A.com is our company domainname).
    So everytime I add a new user account and I need to create on three NIS domains separately. Also, the password is out of sync if user change the password on one site.
    I would like to migrate NIS to LDAP.
    I want to have single username and password for each user on 3 sites. However, the home directory is on local NFS filer.
    Say for userA, his home directory is /user/userA in passwd file/map. On location X, his home directory will mount FilerX:/vol/user/userA,
    On location Y, userA's home directory will mount FilerY:/vol/user/userA.
    So the mount drive is determined by auto_user map in NIS.
    In other words, there will be 3 different auto_user maps in 3 different LDAP servers.
    So userA login hostX in location X will mount home directory on local FilerX, and login hostY in location Y will mount home directory on local FilerY.
    But the username and password will be the same on three sites.
    That'd my goal.
    Some LDAP expert suggest me the MMR (Multiple-Master-Replication). But I still no quite sure how to do MMR.
    It would be appreciated if some LDAP guru can give me some guideline at start point.
    Best wishes

  • Snapshot rollup with Long term backup to Tape

    I need to reconfigure the short term disk storage, and wanted to know if I create a Long Term backup to tape, does that
    store or encompass all the "snapshot/short term" backups that I have on disk?
    If so, I will be able to remove all my disk backups, reconfigure it as needed, and re-enable the short term backups without losing any of my historical backups. (For Legal reasons)
    Thanks!
    CCIE, CISSP, MCSE: Communication (Lync 2013), MCITP: Lync 2010, Enterprise Admin & Messaging ************************************************************************************************************************ Please remember to click “Mark as Answer”
    on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question.

    Hi,
    No, Long term to tape are also "point in time" backups and if started now will only contain new recovery points. The ability to make backups of previous recovery points is not very easy, you basically need to restore a disk based RP to tape, unfortunately,
    every restored recovery point to tape requires a separate tape.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Restore RMAN backup from tape

    I have to restore the RMAN full backup from tape to new host to a previous date say March 1st. My target database RMAN retention period is 28 days, today is 11th May.
    Is it possible to restore the obsolete database from tape backup to new host as of May 1st. If not possible, I would like to restore the available backup say as 15th April from tape to new host.
    Can you please provide me the steps to restore the tape old backup to new host.
    Thanks,
    Mahi

    Can't read documentation? You also seem to be unable to mark questions as answered
    Mahi      
         Newbie
    Handle:      Mahi
    Status Level:      Newbie
    Registered:      Nov 24, 2010
    Total Posts:      24
    Total Questions:      15 (13 unresolved)
    Sybrand Bakker
    Senior Oracle DBA

Maybe you are looking for