Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Restoring database with .Z files
On 1/3/06, J. Dex wrote:
> Typically, I am used to working with gunzip. This is how I do what I want
> in gunzip
> gunzip -dc /d01/restore/control01.ctl.gz > /d02/oradata/dbname/control01.ctl
>
> Does anyone know what the equivalent of doing this is with regular .Z files?
You can still use gzip if you want... it can uncompress .Z files without any difficulty. If for some reason that doesn't work for you, try:
$ uncompress -c /foo/control01.ctl.Z > /bar/control01.ctl
-- "I'm too sexy for my code." - Awk Sed Fred. -- http://www.freelists.org/webpage/oracle-lReceived on Tue Jan 03 2006 - 18:10:00 CST
![]() |
![]() |