- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Uncompress -- - File Too Large
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:17 AM
01-06-2003 12:17 AM
I have oracle datafiles that ar 2GB in size. I have done an export and the exported file compressed is as follows:
1118475115 Jan 3 12:12 UCT01.dmp.Z
The export was done with a pipe to the compressed file. When trying to uncompress the file, I get the following:
ORACLE8>>uncompress UCT01.dmp.Z
UCT01.dmp: File too large
ORACLE8>>ls -al UCT01.dmp.Z
-rw-r--r-- 1 oracle dba
Any ideas about this?
We are running HP-UX 11.0.B on an L2000
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:34 AM
01-06-2003 12:34 AM
Re: Uncompress -- - File Too Large
Your uncompress version is obviously not large-file-aware.
As a workaround this should work for you:
uncompress -c
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:35 AM
01-06-2003 12:35 AM
Re: Uncompress -- - File Too Large
Try;
zcat UCT01.dmp.Z > UCT01.dmp
Either that or you need largefiles on your filesystem, you can check if its on by doing;
fsadm /dev/
And it should return;
nomultifsets
nolargefiles
And you can set it on with;
fsadm -o largefiles
Then the uncompress should work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:41 AM
01-06-2003 12:41 AM
Re: Uncompress -- - File Too Large
Examination of my fstab indicates that the filesystem was mounted with nolargefiles.
1. If I activate this as indicated above, what are the implications?
2. Does this in any way affect any of the existing database files?
3. Can I do this on the fly or do I need to be in single user mode?
Many Thanks
Vinesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:47 AM
01-06-2003 12:47 AM
Re: Uncompress -- - File Too Large
2. no impact on database files
3. If you have the OnlineJFS or AdvanceJFS you can do it on the fly, otherwise the filesystem hat to be umounted.
Heiner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:50 AM
01-06-2003 12:50 AM
Re: Uncompress -- - File Too Large
If you have vxfs filesytems you can do it on the fly, hfs first umount change and mount again.
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 11:02 PM
01-06-2003 11:02 PM
Re: Uncompress -- - File Too Large
Make sure oracle is not running though else your umount will fail if any datasets are open. I would start here since if your file is just more than 2Gb it will fail to uncompress succesfully. After doing that look at the uncompress with 2Gb limit workarounds as above.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 11:58 PM
01-06-2003 11:58 PM
Re: Uncompress -- - File Too Large
I did a umount of /aleph/tmp and then tried the following (in runlevel 3):
fsadm -o largefiles /aleph/tmp
fsadm: /etc/default/fs is used for determining the file system type
vxfs fsadm: /aleph/tmp is not the root inode of a vxfs file sytem
I also tried changing the options in the vfstab from nolargefiles to largefiles without much luck.
Any suggestions???
Thanks
Vinesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 12:14 AM
01-07-2003 12:14 AM
Re: Uncompress -- - File Too Large
Solved the problem, I simply removed largefiles from the fstab and did a mount.
I then uncompressed the file and it worked.
Many Thanks nevertheless
Vinesh