- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Possible V8.2 $ BACKUP /INPUT_FILES bug
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
02-07-2007 09:34 AM
02-07-2007 09:34 AM
DISK$USR00:[WAYNEW]bug.doc;1
DISK$USR00:[WAYNEW].rnd;1
$ BACKUP BACKUP.DAT/INPUT_FILES W.BCK/SAVE
%BACKUP-W-NOFILES, no files selected from DISK$USR00:[WAYNEW]bug.rnd;1
If I change BACKUP.DAT so that .rnd is first, no error is produced.
It is interesting to note that this behavior does not occur if I supply a filespec with a null file type.
Can anyone suggest a work-around other than reordering file specs? Does this behavior replicate in V8.3?
Environment:
AlphaVMS V8.2, with VMS82A_BACKUP-V0100 applied
image name: "BACKUP"
image file identification: "V8.2"
image file build identification: "XAJT-0070050003"
link date/time: 13-JUL-2005 14:56:06.65
linker identification: "A11-50"
image name: "BACKUPSHR"
image file identification: "V8.2"
image file build identification: "XAJT-0070050003"
link date/time: 13-JUL-2005 14:55:12.66
linker identification: "A11-50"
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2007 09:53 AM
02-07-2007 09:53 AM
Solution"If the disk, directory, or file extension is not specified, the defaults are copied from the previous entry or from the default if this is the first entry."
That text is from the current BACKUP documentation.
The Linker maintainer finally added a knob to optionally turn some similar filename stickiness processing over there off. See RMS_RELATED_CONTEXT=NO" in the linker manual. Stickiness is obscure and useful and long-standing behavior of OpenVMS, and omitted fields will default.
You might be able to bypass this by quoting the string, but I have not checked to see if BACKUP /INPUT_FILES supports this particular escape hatch. I usually avoid null names, as seemingly weird stuff can ensue -- at least until you find out what happened with the defaulting and the stickiness.
Straight DCL commands can and do display this stickiness and field defaulting, too.
Stephen Hoffman
HoffmanLabs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2007 09:55 AM
02-07-2007 09:55 AM
Re: Possible V8.2 $ BACKUP /INPUT_FILES bug
http://h71000.www7.hp.com/doc/83final/6048/6048pro_023.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2007 10:16 AM
02-07-2007 10:16 AM
Re: Possible V8.2 $ BACKUP /INPUT_FILES bug
Setting the file spec (or the file name section) in quotes produces an error, so no luck there.
And as I mentioned, a null file type doesn't produce the behavior, which I suppose it should according to the documentation (perhaps the meaning of "file extension" is ambiguous?).
To me, this is very, very ugly...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2007 11:05 AM
02-07-2007 11:05 AM
Re: Possible V8.2 $ BACKUP /INPUT_FILES bug
I guess I'll just have to check for null file names as I'm scanning directories and place them at the beginning of the file, even if they're out of directory tree order.
Thanks for the prompt replies!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2007 04:10 PM
02-07-2007 04:10 PM
Re: Possible V8.2 $ BACKUP /INPUT_FILES bug
With proxies enabled: 0::.rnd
Or 0"user pass"::.rnd
Yuck!
Hein
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2007 04:09 AM
02-09-2007 04:09 AM
Re: Possible V8.2 $ BACKUP /INPUT_FILES bug
SOURCE> type a.a
DISK$USR00:[WAYNEW]bug.doc;1
DISK$USR00:[WAYNEW].rnd;1
SOURCE> sort a.a
_Output: a.b
SOURCE> type a.b
DISK$USR00:[WAYNEW].rnd;1
DISK$USR00:[WAYNEW]bug.doc;1
SOURCE>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2007 10:39 AM
02-09-2007 10:39 AM
Re: Possible V8.2 $ BACKUP /INPUT_FILES bug
explicitly specifies a null file type, as opposed to "name" where the file type is missing.
Unfortunately there no way to explicitly specify a null file name with DCL, so you have this type of problem when either sticky names or wildcard defaults are involved.
So although you can do "CREATE .TXT", if you then do "DIRECTORY .TXT" you actually get a directory of *.TXT;*
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2007 12:16 PM
02-13-2007 12:16 PM
Re: Possible V8.2 $ BACKUP /INPUT_FILES bug
Edgar - I don't think that sorting the file won't work without a lot of effort because I think I'd need to transform each record so the position of the file name was in a fixed column, sort, and convert back.
Jess - nice explanation! It makes sense.
Thanks again to all who replied!