- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- generating a FDL file for an indexed RMS 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
11-16-2006 05:30 AM
11-16-2006 05:30 AM
generating a FDL file for an indexed RMS file
I need to do a convert on an indexed file on an OpenVMS VAX V7.1 to free space. I'm not shure I have the right FDL file for the CONVERT command. How can I safly generate a new FDL file for the oparation. Is it
ANALYZE/RMS_FILE ?
Is it safe to run this analyze on the file?
Thank you all.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2006 05:49 AM
11-16-2006 05:49 AM
Re: generating a FDL file for an indexed RMS file
Looks pretty safe to me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2006 06:01 AM
11-16-2006 06:01 AM
Re: generating a FDL file for an indexed RMS file
Steven wrote
>>>
HELP ANALYZE /RMS_FILE /FDL
<<<
... and to make it easy to use: /OUTPUT=blabla.FDL
Now CONVERT
hth
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2006 06:21 AM
11-16-2006 06:21 AM
Re: generating a FDL file for an indexed RMS file
ANALYZ/RMS/FDL will require exclusive access to a file.
It is read-only. but it could lock out applications and applications could lock it out.
It is often not unreasonable to run ANAL/RMS/FDL on the last backup of a file, or on a recent BACK/IGNO=INTERLOCK copy.
You would probably want to follow the analyze with EDIT/FDL/NOINTERACTIVE.
ANd then CONVERT/FAST
You possibly want to hand-edit FDL tweak allocations.
"convert to free space" does not make too much sense... unless the application recently purged out lots of records.
There are also odd RMS usage cases which build of lots of space which will not be re-used (VAXnotes notary files), and where an occasional convert helps.
If you provide bettter details on what exact problem you are trying to solve, then perhaps we can help better.
Regards,
Hein van den Heuvel
HvdH Performance Consulting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2006 03:40 AM
11-17-2006 03:40 AM
Re: generating a FDL file for an indexed RMS file
I finally want that the converted the indexed file, the output in the convert command will have the same characters as the input, original file, but with much space freed.
If I do first the
ANALYZE/RMS_FILE/FDL
and then the:
EDIT/FDL/NOINTERACTIVE
The last will supply some defaults to the FDL file, is there a danger here that these defaults will give me some diffrences with the original file? If yes, what?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2006 03:54 AM
11-17-2006 03:54 AM
Re: generating a FDL file for an indexed RMS file
The last will supply some defaults to the FDL file, is there a danger here that these defaults will give me some diffrences with the original file? If yes, what
Yes there will be differnence, but only desirable ones.
- The allocation will be 'just enough', with a reasonable extent in case data is added
- The Bucketsize will be a reasonable compromise between keeping the index depth low, and the buckets small.
This will be transparent to any program using it, other then influencing performance.
If your goal realy is to minimize space used then you should hand edit the FDL
- use a single area for all usages (fix keys)
- change bucket size to 63 for that area
- reduce allocation of area to say 80% of what FDL calculated and reduce extent to 1%
- make sure data, key and index compresions are 'yes' for all keys
Now convert.
Be sure to read up in the 'VMS Guide to Files'
Hein.