- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Large file limitation
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
09-11-2001 04:51 PM
09-11-2001 04:51 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2001 05:20 PM
09-11-2001 05:20 PM
Re: Large file limitation
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 12:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 07:14 AM
09-12-2001 07:14 AM
Re: Large file limitation
As a point of interest, I will note that we use a piped compression for our oracle exports in order to minimize the size requirements for our filesystem. I would imagine that you could modify the sequence to support the import, too, though I have not tested such a solution. For export:
rm /export/oracle/fullAPPDEV.dmp.Z
/usr/sbin/mknod /export/oracle/fullAPPDEV.dmp p
compress < /export/oracle/fullAPPDEV.dmp > /export/oracle/fullAPPDEV.dm
p.Z &
sleep 5
$ORACLE_HOME/bin/exp fullexp/exp FULL=Y file=/export/oracle/fullAPPDEV.dmp log=/export/oracle/logs/fullAPPDEV.log
rm /export/oracle/fullAPPDEV.dmp
#NOTE: the rm commands clean up the previous export and the named pipe.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2001 08:14 AM
09-13-2001 08:14 AM
Re: Large file limitation
You can you the following command to import uncompress .dmp file :
rm /oracle/data/temp/exp.dmp
mknod /oracle/data/temp/exp.dmp p
uncompress -v < /oracle/data/temp/exp.dmp.Z > /oracle/data/temp/e
xp.dmp &
sleep 5
imp parfile=imp.par
You can create imp.par with whatever import parameter that fix your requirement.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2001 10:12 AM
09-13-2001 10:12 AM
Re: Large file limitation
If you have an existing filesystem u can modify the largefile parameter for that filesystem either through SAM or through the comamnd line.
For SAM use SAM ---> Disk and Filesystems --> Select the filesystem ---> Selct Action ----> Modify ----> Modify vxfs default / parameters ---> set the flag largefiles on , Select Ok and exit.
Through command line
umount /mount_point
fsadm -F vxfs -o largefiles /dev/vg_name/lv_name
mount /dev/vg_name/lv_name
If you doing this through your command line, modify the /etc/fstab file so that largefile option is refelected in the mount parameters corresponding to this lv.
Hope this helps.
Thanks