Operating System - HP-UX
1751894 Members
4841 Online
108783 Solutions
New Discussion юеВ

Re: gunzip Value too large to be stored in data type

 
SOLVED
Go to solution
Sammy_2
Super Advisor

gunzip Value too large to be stored in data type


magic:/holdarea ==> ulimit
unlimited
Dba was able to gzip but now after I downloaded the file from backup server and try to gunzip it , it gives me this.
Any ideas ?
Thanks


magic:/holdarea ==> fsadm -F vxfs /holdarea
largefiles
magic:/holdarea ==> gunzip MASST.dmp.gz
MASST.dmp.gz: Value too large to be stored in data type
magic:/holdarea ==> uname -a
HP-UX magic B.11.11 U 9000/800 261757805 unlimited-user license
good judgement comes from experience and experience comes from bad judgement.
4 REPLIES 4
Michal Kapalka (mikap)
Honored Contributor
Solution

Re: gunzip Value too large to be stored in data type

Hi Sammy,

try http://digilux.es/unix_linux/hpux/value-too-large-to-be-stored-in-data-type/

in your case just :

cat MASST.dmp.gz | gzip -d > MASST.dmp

hope it will help.

mikap
smatador
Honored Contributor

Re: gunzip Value too large to be stored in data type

Hi,
You could also check the gzip version with
# gzip -V
and get the last version.
"Largefiles is supported starting with public doman gzip version 1.3.1 and above."

Get the latest version here:
http://hpux.connect.org.uk/hppd/hpux/Gnu/gzip-1.3.12/

Hope it helps
Sammy_2
Super Advisor

Re: gunzip Value too large to be stored in data type

Michal,
Why are making poor unix admin read espanol ( link ) ? :)
But anyway, I could make out the link in spanish says the same thing you mentioned.

Thanks, your workaround seems to be working.


Smatador,
For future purposes, I will download your gzip file and go with your suggestion as well and see how it works. Much appreciated.

Thanks to both for the solution
good judgement comes from experience and experience comes from bad judgement.
Sammy_2
Super Advisor

Re: gunzip Value too large to be stored in data type

Thanks to both. Got solution
good judgement comes from experience and experience comes from bad judgement.