- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How could I copy to another disk a 5Gb file?
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-2006 08:28 PM
09-11-2006 08:28 PM
I need to copy files that have more than 5Gb in another filesystems, How could I do this?
rw-r----- 1 oracle oinstall 5242896384 Sep 10 03:34 D_DPF2006T1_4.dbf
I know that if there are more than 2Gb are problems with a normal copy.
Could you help me?
Thank you!
Carmen.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 09:23 PM
09-11-2006 09:23 PM
Solution1. As it is a dbf file is the database down?
Otherwise you may get "file in use" problems.
2. Ensure the target systems disk allows large files: grep mountpoint /etc/fstab
otherwise use SAM to change.
3. You should be able to use cp
Please let us know how you get on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 09:25 PM
09-11-2006 09:25 PM
Re: How could I copy to another disk a 5Gb file?
I dont think there's a filesize limit with cp-command.
Is your target file system created with "largefiles"-option?
check with it mkfs(1M) with -m option.
# mkfs -F vxfs -m /dev/vgXY/lvolZ
If cp is really the matter try dd(1) command.
rgds
HGH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 09:52 PM
09-11-2006 09:52 PM
Re: How could I copy to another disk a 5Gb file?
2GB limitation is there for "cpio" command. In your case you can use normal "cp" command.
Regards !
JIJ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2006 12:14 AM
09-12-2006 12:14 AM
Re: How could I copy to another disk a 5Gb file?
Older HP-UX versions of 'cpio' and 'tar' had a 2GB limit in order to remain compatible with industry standards. I believe older versions of Oracle also had a 2GB limit on the size of datafiles. Maybe you are thinking along these lines.
If you are not running in hot-backup mode, your instance must be shutdown before you can copy the datafile. If you are in hot-backup mode, you will need archivelogs for recovery.
See the "Oracle Backup and Recovery FAQ":
http://www.orafaq.com/faqdbabr.htm
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2006 03:52 AM
09-12-2006 03:52 AM
Re: How could I copy to another disk a 5Gb file?
The "dd" it's a good and powerfull command:
Stop the Oracle Database.
dd if=/DATA/file_old.dbf of=/DATANEW/file_new.dbf bs=16k
Good Luck,
Joel