- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Limit to saveset names on tape?
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-29-2004 05:49 AM
09-29-2004 05:49 AM
If so, what is it and is there a workaround?
I built a menu-driven backup/restore system for our Alpha/VMS cluster. I tested it using backups to disk (for speed). Everything worked, and the system depends on saveset names containing certain information.
Today we started testing with tape and encounteed warnings where the saveset names exceeded 17 or 18 characters. Then BACKUP truncated the saveset names to about 17 characters.
My script message:
Backing up $1$DKE200:[SYSDATAP...]* to MKB200:$1$DKE200_SYSDATAP_092904.BCK (incremental since YESTERDAY)
Backup said:
%BACKUP-I-SSNAMTRUNC, save-set name too long, truncated to $1$DKE200_SYSDATA
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:02 AM
09-29-2004 06:02 AM
Re: Limit to saveset names on tape?
SSNAMTRUNC, save-set name too long, truncated to 'save-set-name'
Facility: BACKUP, Backup Utility
Explanation: The specified label exceeds the maximum length and was truncated to the legal limit of 6 characters.
User Action: Specify a volume label with 6 or fewer characters.
at http://h71000.www7.hp.com/doc/73final/6023/6023pro_016.html
what is the label name ? Could you add /ign=label to your command ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:06 AM
09-29-2004 06:06 AM
Re: Limit to saveset names on tape?
According to the documentation
http://h71000.www7.hp.com/doc/73final/6023/6023pro_016.html
(and probably HELP/MESSAGE SSNAMTRUNC) the limit is 6 characters. This limit is not for the saveset name but for the tape label.
Backup initializes the tape before write to it (probably you use the /REWIND qualifier). If you initialize the tape with the INITIALIZE command and do the backup without /REWIND but with the /IGNORE=LABEL qualifier, this informational will probably disapear.
The starnge thing that the label is truncated to 17 characters.
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:09 AM
09-29-2004 06:09 AM
Re: Limit to saveset names on tape?
Here is the command it complained about. I inserted some breaks and spaces to make it easier to read.
(Originally written long ago by someone else. I just changes the LIS and SAVE_SET names to provide info to the menu system.)
BACKUP/IGNORE=LABEL/LOG
/LIST=$1$DKE200_SYSDATAP_092904.LIS
/IGNORE=(LABEL,INTERLOCK)
$1$DKE200:[SYSDATAP...]*
/MODIFIED/SINCE=YESTERDAY
MKB200:$1$DKE200_SYSDATAP_092904.BCK
/MEDIA=COMPACT/NOCRC/GROUP=0/BLOCK=65534
As I stated, the very same command works when writing the saveset to disk, instead of tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:13 AM
09-29-2004 06:13 AM
Re: Limit to saveset names on tape?
$ INITIALIZE/media=compact 'DEVICE' INCBCK
$ MOUNT/FOREIGN 'DEVICE'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:19 AM
09-29-2004 06:19 AM
Solutionyour hunch is right on the spot: saveset names on tape DO have a length limit of 16 or 17 chars (can not check exactly now, but I have read it, I think in the Backup documentation).
One way to trick yourself into a little less unfavorable position would be to leave out ".BCK", and replace the "_" before the date by "." .
It only gains you 4 characters, but hey, that's 25%.
It has been helping us for years...
Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:21 AM
09-29-2004 06:21 AM
Re: Limit to saveset names on tape?
try to do a mount/over=id and a dir on the tape. Which results do you get for the label and saveset name?
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:25 AM
09-29-2004 06:25 AM
Re: Limit to saveset names on tape?
Jan is right. Now I found this in documentation
http://h71000.www7.hp.com/doc/731FINAL/4506/4506pro_002.html#103_hdr1label
The file name length limit is 17 characters.
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:28 AM
09-29-2004 06:28 AM
Re: Limit to saveset names on tape?
Save set: $1$DKE201_092004.
Label: SYSDATAP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:39 AM
09-29-2004 06:39 AM
Re: Limit to saveset names on tape?
Your workaround may help. I'll have to rework some things, and hopefully this won't be a roadblock too much longer.
To everyone else, thank you as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 07:32 AM
09-29-2004 07:32 AM
Re: Limit to saveset names on tape?
Thanks to all.