- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Query on COPY command
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
04-18-2004 01:58 PM
04-18-2004 01:58 PM
Query on COPY command
My customer is running on OpenVMS V7.2-2 on ES40.
He is running an application called Adabas
Every day, he will export the application's image into a dump file for backup.
Usually, he will use COPY command to copy this image dump file into a tape.
Recently he tried to copy the image dump from the tape into the disk and when he tried to access that image from the application, it was not successful.
He tried using BACKUP command and it works fine.
Customer has another site with same setup and they have no problem using the COPY command.
I need some advise on what could be the problem here.
Thank you.
Thanks and Regards,
Ronny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 04:42 PM
04-18-2004 04:42 PM
Re: Query on COPY command
Without a clear description of "it was not successful" it's impossible to say what the problem might be.
If the file is open or updated at the time a copy or BACKUP is taken, then there may be inconsistencies in the copy.
Please contact your application vendor to find the recommended mechanism for taking backups of application data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 06:56 PM
04-18-2004 06:56 PM
Re: Query on COPY command
I read the following in the releases notes of
VMS722_FIBRE_SCSI-V0400
DIR-E-TAPEPOSLOST errors when can occur when a DIRECTORY
command is used on skip-filemark-capable tape drives.
Images Affected:[SYS$LDR]SYS$MKDRIVER.EXE
Have you applied this patch ?
Regards
Gerard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 08:03 PM
04-18-2004 08:03 PM
Re: Query on COPY command
Additionally BACKUP will preserve the file dates but copy will not - sometimes this can cause problems.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2004 01:51 AM
04-19-2004 01:51 AM
Re: Query on COPY command
$ set magtape/fast_skip=never mua0:
if mua0: is the name of your tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2004 04:04 AM
04-19-2004 04:04 AM
Re: Query on COPY command
can you do a dir/full on the database dump before the copy and after getting it back from tape? This might give one a clue on what file attribute changed. Also the exact error message you get from Adabas would be helpful.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2004 07:58 PM
04-20-2004 07:58 PM
Re: Query on COPY command
You talk about export, dump and copy. ADABAS has two utilities on VMS, ADAORD (to export) and ADABCK (to dump). Both utilities write a single file to disk or tape. If you're writing these to disk and want to copy these off to tape, then you can use the ADAORD or ADABCK COPY command (which are very fast).
So, I think there might be some confusion from your statement, ie. which parts of it refer to vms commands and which refer to adabas commands.
If I remember right, an adabas block size is about 64K so if you use vms copy or backup and don't get your maths right you could end up slowing things down or not being able to restore the file (i.e. direct from tape using the adabas utility).
Oh, and of couse using vms backup will mean you'll have to restore the file to disk if you ever need to import (adaord) or restore (adabck) the file back into the database.
I wouldn't mix VMS backup save sets on tape with ADAORD or ADABCK Adabas backups.
Another hint, check the DBA account UAF values (in the ADABAS utiltiies manual) as you can squeeze some more milage out of ADAORD (asyc writes) with higher values, especially ASTLM + DIOLM. ADABCK is not so fast (flip flop buffers).
Finally, you can verify the data written to tape (if you used the adabas utility to copy the data or have written it direct to tape) by using the ADABCK READ_CHECK or ADAORD SIMULATE command.
Hope this helps.