![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tape Status shows 2 Hard errors and 5 Underruns on new tape | psytropic | SCO | 5 | 04-24-2008 10:29 AM |
| Mounting DLT tape and to backup file to tape | ayzeayem | UNIX for Dummies Questions & Answers | 0 | 08-13-2007 11:09 PM |
| Space free on tape /delete a single file on tape | Minguccio75 | UNIX for Advanced & Expert Users | 3 | 12-20-2006 09:03 PM |
| Take a file from the system and put on tape and reset the file to 0 bytes | JackieRyan26 | UNIX for Dummies Questions & Answers | 1 | 09-06-2001 02:08 PM |
| Restoring a file from Tape | mfischer | UNIX for Dummies Questions & Answers | 3 | 06-29-2001 12:57 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
file on tape
Hi,
I use the following commands on Solairs to backup my Oracle db file to tape: mt -t /dev/rmt/0 rew exp ..... file= /dev/rmt/0n Q1: how can I copy this file back onto my disk? (ufsrestore doesn't work) Q2: I found that /dev/rmt/0n is linked to /devices/ssm@0,0/pci@1d,600000/pci@1/SUNW,isptwo@4/st04,0:n and the size of that file shows 33279. This filesize seems too small for my database file. So what does this number mean? (btw, I got the number 33279 by ls -l /devices/ssm@0,0.......) Thanks. James. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Its not clear to with backup command you are using.
When you want to restore with `ufsrestore` you need to make your backup with `ufsdump` The file you mentiond in Q2 is NOT the database file, it is just the tape device. `mt -t /dev/rmt/0 rew` is just doing a rewind of your tape. `exp ..... file= /dev/rmt/0n ` I do not know what you mean with this. Hereby the man page of ufsdump/ufsrestore http://docs.sun.com/db/doc/805-3727/...ufsdump&a=view |
|
#3
|
|||
|
|||
|
Sorry that my wording 'backup' was misleading.
My ex-co-worker extracted some data in an Oracle database by using the Oracle "exp" utility and directly write data onto the tape device(hence the command exp ....... file=/dev/rmt/0n ....). by looking at the script I thought the data would be stored in the filename /dev/rmt/0n, which is the same as the tape device, so I try 'cp' it but it didn't work. Is there a default filename for data stored on the tape device? I want to copy the file back to a disk to I can ftp it to somewhere else. Also, I did a 'ls -l /dev/rmt/0n' and it showed a link to /devices/ssm@0,0/pci@1d,600000/pci@1/SUNW,isptwo@4/st04,0:n and then I did a 'ls -l ' on the file and it showed 33279 as the filesize. Does this number represent how much data that is currently stored on the tape device? Thanks. |
|
#4
|
|||
|
|||
|
Try dd
Hi,
You can use the `dd` command to read blocks from tape to disk. hereby the SUN manpage of dd http://docs.sun.com/db/doc/806-0625/...kv?q=dd&a=view |
|||
| Google The UNIX and Linux Forums |