- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Kernel/Itanium
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
10-25-2005 03:03 AM
10-25-2005 03:03 AM
Kernel/Itanium
I am trying to import oracle using a pipe,
and I get an error about "unable to read a file larger that 2 Gbytes. I've had this before but can't remember what to do.
In the kernel I changed all th *max* parms up as high as possible. Anyone ever had this problem.
ulimit shows 'unlimited'
Problem reading a file over 2 gbytes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2005 03:08 AM
10-25-2005 03:08 AM
Re: Kernel/Itanium
There is no kernel parameter to control largefiles. Rather, you need to enable 'largefiles' for the filesystem in which you wish to store files larger than 2GB.
# /usr/sbin/fsadm -F vxfs -o largefiles /dev/vgNN/rlvolX
Note the use of the raw device. You do not need to unmount the filesystem if you have OnlineJFS.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2005 03:10 AM
10-25-2005 03:10 AM
Re: Kernel/Itanium
fsadm -F vxfs /dev/vgname/rlvol
hope this helps,
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2005 03:11 AM
10-25-2005 03:11 AM
Re: Kernel/Itanium
All filesystems have enabled "creation of large files"
This has to do with the ability to read limit on a file per process, or something like that.
Here is the limit for oracle:
ltcps1:oracle> csh
ltcps1 1: limit
cputime unlimited
filesize unlimited
datasize 4194300 kbytes
stacksize 392192 kbytes
coredumpsize 2097151 kbytes
descriptors 2048 files
memoryuse unlimited
ltcps1 2: limit -h
cputime unlimited
filesize unlimited
datasize 4194300 kbytes
stacksize 392192 kbytes
coredumpsize unlimited
descriptors 4096 files
memoryuse unlimited
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2005 03:37 AM
10-25-2005 03:37 AM
Re: Kernel/Itanium
Would you mind posting details on the process/steps involved w/ the import and pipe. Is ssh/rsh being used anywhere? How is it kicked off.. etc.
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2005 05:36 AM
10-25-2005 05:36 AM
Re: Kernel/Itanium
Ah, Oracle imports and exports. If I recall correctly, you will need to 'split' your export and import the split files. This might help:
http://techrepublic.com.com/5100-9592_11-5676320.html
Regards!
...JRF...