1827845 Members
1921 Online
109969 Solutions
New Discussion

Re: Backup Size

 
Sentosa
Frequent Advisor

Backup Size

Dear All,

I want to perform backup from disk to saveset.
-Backup/image/log/block=65535 DISKA: DISKB:[000000]DISKA_BACKUP.SAV/sav

How many space i need for the saveset if DISKA has around 20GB data?

Thanks,
Sentosa
15 REPLIES 15
Wim Van den Wyngaert
Honored Contributor

Re: Backup Size

About 22 GB ? (if size was received with dir/siz=used). 2 GB group overhead.

Check backup /group=0 to reduce the size. Use /ign=int to get all files even when they are open.

Wim
Wim
Heinz W Genhart
Honored Contributor

Re: Backup Size

Hi Sentosa

I do backup of my disks at home over a VPN to another OpenVMS machine located at my office 10 km away on a daily base.

Here some examples about saveset sizes:

Dir/grand disk: Saveset size
2.89 GB 2.52 GB 87.2%
541.19 MB 476.6 MB 88.1%
600.23 MB 505.59 MB 84.2%

Regards

Geni
Heinz W Genhart
Honored Contributor

Re: Backup Size

Hi Sentosa

I forgott to add the backup command used

I do:

BACKUP/IMAGE/RECORD/IGNORE=(INTERLOCK) Disk: remote_location::disk:[dir]saveset.bck/sav

Regards

Geni
labadie_1
Honored Contributor

Re: Backup Size

Wim said
Use /ign=int

or /allow=corruption, which is the same

:-)
Wim Van den Wyngaert
Honored Contributor

Re: Backup Size

Labadie,

It is essential for the size test to have ALL files.

Geni,

siz=used ? I tested a small disk over here and got 10% bigger save set size.

Wim
Wim
Wim Van den Wyngaert
Honored Contributor

Re: Backup Size

I had 5837 files, size 779760 and the saveset was 857241. All with real files (not marked nobackup).

Wim
Wim
labadie_1
Honored Contributor

Re: Backup Size

Wim

just joking
Heinz W Genhart
Honored Contributor

Re: Backup Size

Hi Sentosa & Wim

It was the allocated size, sorry.

Here some examples about saveset sizes:

Dir/grand disk: Saveset size
(size used)
2.24 GB 2.52 GB 112.5%
427.33 MB 476.6 MB 111.53%
468.23 MB 505.59 MB 107.98%

Regards

Geni
Karl Rohwedder
Honored Contributor

Re: Backup Size

Since V8.3 you may add a /DATA=COMPRESS, which reduces the saveset size considerably (we have reductions up to 80%).

regards Kalle
Wim Van den Wyngaert
Honored Contributor

Re: Backup Size

But still add /group=0 because the default is stuppid for disks (and also for most tapes).

Wim
Wim
Dave Gudewicz
Valued Contributor

Re: Backup Size

You might want to check on using a blocksize=65535 to disk. Isn't the maximum backup blocksize to disk=32768 ?

Dave...
Wim Van den Wyngaert
Honored Contributor

Re: Backup Size

"Backup may adjust this value according to the constraints of the backup format" (help)
Wim
Dean McGorrill
Valued Contributor

Re: Backup Size

In the old days, if it was user disk we added /igno=nobackup to. This is because we
were told we must protect the users from
themselves in case they set file/nobackup.
(Eh a philosophy, it stuck with me on non system disks)
Steven Schweda
Honored Contributor

Re: Backup Size

> You might want to check on using a
> blocksize=65535 to disk. Isn't the maximum
> backup blocksize to disk=32768 ?

HELP BACKUP /BLOCK_SIZE

" [...] the default for disk is 32,256 bytes."

And that is the maximum, because the maximum
record size on disk is 32767, and 32256 is
the biggest multiple of 512 (one disk block)
which is less than 32768.
Dave Gudewicz
Valued Contributor

Re: Backup Size


>And that is the maximum, because the maximum
>record size on disk is 32767, and 32256 is
>the biggest multiple of 512 (one disk block)
>which is less than 32768.

Thanks for the clarification. And I think that the backup documentation (not help) needs some attention in that it states in the System Manager's Manual Vol 1 on page 434 in table 11-4:

"Note: To be able to copy save sets from tape to disk, use a maximum block size of 32,768."

Dave...