- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- issue opening large file on Itanium 11.23
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
05-30-2008 01:23 AM
05-30-2008 01:23 AM
"NotificationLog.log.bak" Value too large to be stored in data type"
Have you any ideas how I open such a large file?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2008 02:11 AM
05-30-2008 02:11 AM
Re: issue opening large file on Itanium 11.23
Can you please try opening the file and in the same time please run the "vmstat 1" in another terminal. Please provide me the output.
Regards
DK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2008 02:14 AM
05-30-2008 02:14 AM
Re: issue opening large file on Itanium 11.23
Try this;
# bdf
search for a large filesystem with enough free space
# vi
set dir=/your_large_filesystem
:e /your_large_file
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2008 02:21 AM
05-30-2008 02:21 AM
SolutionThis will take forever if you try this.
I don't know if vim works better.
If you want to just look at it, try more(1).
What are you really trying to do?
If you are really trying to edit that file, you might have to use split(1), edit a few files then cat(1) to put them together.
>Deepak: Can you please try opening the file and ... run the "vmstat 1"
Why will this work? The error message says that vi doesn't know how to handle large files because a human would be silly to wait that long.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2008 02:35 AM
05-30-2008 02:35 AM
Re: issue opening large file on Itanium 11.23
bdf .
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol4 31457280 6722320 24541800 22% /home
There is 24GB of free space so that should not be an issue.
I have actually told him to use more or ftp it to windoze and use word.
Somewhere I read on the interweb mentioned a particular patch which would resolve this kind of thing. Might call HP and see what they say.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2008 02:59 AM
05-30-2008 02:59 AM
Re: issue opening large file on Itanium 11.23
Yes, using tusc indicates more(1) will work.
But not vi, even on 11.31.
>a particular patch which would resolve this kind of thing.
I see no evidence of O_LARGE.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2008 03:27 AM
05-30-2008 03:27 AM
Re: issue opening large file on Itanium 11.23
I faced before this issue. This is mainly due to Memory I feel. If sufficient memory is not available the file will not be opened.
I wanted to check the MEMORY-> FREE behaviour in vmstat command output.
Regards
DK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2008 03:45 AM
05-30-2008 03:45 AM
Re: issue opening large file on Itanium 11.23
No, you can't open(2), creat(2) nor stat(2) the file unless you use the proper large file functions.
That's what "Value too large to be stored in data type" means.
Of course once you get past the wrong functions, you need to have enough memory OR you need to have a disk based editor.
Which means fixing wrong editing algorithms.