- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: cp, cat, mv error on .dbf 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
08-29-2001 04:47 AM
08-29-2001 04:47 AM
cp, cat, mv error on .dbf file
Here's the error we're getting when trying to read this file. We get this on a cp, cat, mv or any command which reads the file. The file does exist and occurs after getting quite a ways through the file:
rga8:/prd01/stl_rdvl >> cat users01.dbf > /dev/null
cat: read error: No such file or directory
rga8:/prd01/stl_rdvl >> ls -l users01.dbf
-rw-rw---- 1 oracle dba 2097160192 Aug 28 14:37 users01.dbf
Here's the output from tusc:
read(3, 0x6fff09a0, 8192) ................................ ERR#6 ENXIO
Please assist.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 04:56 AM
08-29-2001 04:56 AM
Re: cp, cat, mv error on .dbf file
Are you absolutely sure no process has the database file open at the time your trying to copy it ? (fuser
Have you tried using dd to copy it;
dd if=
Is the file over 2 GB and the new filesystem youre copying it to setup to handle largefiles > 2 GB ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 06:01 AM
08-29-2001 06:01 AM
Re: cp, cat, mv error on .dbf file
no such device or address
The file is less than 2GB and largefiles are supported on source and target mountpoints.
..Joe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 06:14 AM
08-29-2001 06:14 AM
Re: cp, cat, mv error on .dbf file
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 06:19 AM
08-29-2001 06:19 AM
Re: cp, cat, mv error on .dbf file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 06:24 AM
08-29-2001 06:24 AM
Re: cp, cat, mv error on .dbf file
Our DBA is going to attempt to use RMAN to back up the tablespaces and then try a recovery.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 06:27 AM
08-29-2001 06:27 AM
Re: cp, cat, mv error on .dbf file
Hmm, cat coming up with a read error, and dd reporting no such device or address implies that they underlying hardware your file is sitting on has a problem.
When dd came up with its error how many blocks through was it ? It should say something like; X blocks in, X blocks out, then the error.
Can you also try this in increments;
dd if=
This will read the first 1 MB of the file. Did it work ?
Then slowly increase the count value until you encounter the error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 04:40 PM
08-29-2001 04:40 PM
Re: cp, cat, mv error on .dbf file
Some DBAs choose to use them to get faster access.
This is true on some systems, but causes management
problems such as this.
The 'dd' command should be able to move the files.
It may spit out an error on end of file, but should
specify the number of blocks copied. Use the
bs=1024 option on the dd command and compare
the blocks coped to the value du -k gives for the
database file being copied.