- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- How to delete file without version or wildcard
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
Discussions
Discussions
Discussions
Forums
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
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
тАО10-11-2005 08:29 PM
тАО10-11-2005 08:29 PM
How to delete file without version or wildcard
Does anyone know of a way to delete a file in OVMS without a version number or wildcard?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2005 08:42 PM
тАО10-11-2005 08:42 PM
Re: How to delete file without version or wildcard
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2005 09:29 PM
тАО10-11-2005 09:29 PM
Re: How to delete file without version or wildcard
It allows deletion of the highest version without specifying a versionnumber.
Example:
FTP> dele TDC$SAP01$050623102008.LOG
250 Delete file BO_USER_1:[ROHWEDDER]TDC$SAP01$050623102008.LOG;1, completed.
For the kit see http://www.process.com/openvms/index.html.
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2005 10:31 PM
тАО10-11-2005 10:31 PM
Re: How to delete file without version or wildcard
Try this :
$ DEFINE /SYSTEM TCPIP$FTP_NO_VERSION 1
Restart ftp service...
Example ftp from Windows XP to VMS:
C:\>ftp xxxxx
Connected to xxxxx.
220 xxxxx FTP Server (Version 5.4) Ready.
ftp> del q.com
250 File USER1:[SCHOLLAERT]Q.COM;1 deleted.
ftp>
Cheers,
Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2005 10:56 PM
тАО10-11-2005 10:56 PM
Re: How to delete file without version or wildcard
this does not work here (TCPIP V5.5-Eco1) and acc. to the documentation the logical name TCPIP$FTP_NO_VERSION suppresses version numbers to be sent using the LS or MGET commands.
Log:
(LNM$SYSTEM_TABLE)
"TCPIP$FTP_NO_VERSION" = "1"
FTP> dele vuw30.trace
550-Failed to delete file vuw30.trace
550 The file specification must contain a version number (even if wildcarded).
FTP>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2005 11:16 PM
тАО10-11-2005 11:16 PM
Re: How to delete file without version or wildcard
HG FTP may do what you want.
ftp://ftp.process.com/vms-freeware/fileserv/hgftp.zip
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2005 11:54 PM
тАО10-11-2005 11:54 PM
Re: How to delete file without version or wildcard
I know nothing of BizTalk, and more importantly, I do not know how much control you can get over the VMS environment, but yout question
Does anyone know of a way to delete a file in OVMS without a version number or wildcard?
in itself IS solvable, if you can somehow get a logical name defined:
$ DEFINE
and then DELETE
Notice the
Now, how you can manage to define that logical bocomes another problem, and I have not the faintest idea about the (im-)possibility of that, but, at least, it IS anoher possible road to a solution.
hth.
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2005 11:58 PM
тАО10-11-2005 11:58 PM
Re: How to delete file without version or wildcard
My example is the output of a test I just did. That proves it works...
Important is that I started the ftp session from a Windows client. When I start the session from a VMS system, I get the error...
Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2005 12:03 AM
тАО10-12-2005 12:03 AM
Re: How to delete file without version or wildcard
Also 5.5 on VMS 8.2 work for me. But don't forget to stop/start the ftp service....
220 xxxx FTP Server (Version 5.5) Ready.
User (xxxx:(none)): schollaert
331 Username schollaert requires a Password
Password:
230 User logged in.
ftp> del z.z
250 File USER1:[SCHOLLAERT]Z.Z;1 deleted.
ftp>Best regards,
Jan