- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: SET RMS question
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-2006 07:19 PM
04-18-2006 07:19 PM
SET RMS question
Specified /BUFFERS=255, but without /INDEXED, would that cause corruption when copying/analyzing/converting indexed-sequential files?
FYI:
The primary key of a file consists of a letter and 6 digits - the letter may be uppercase or lowercase - the difference is crucial. But some way, after SET RMS, the file seems to have lost it's lower-case lettered keys.
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2006 07:46 PM
04-18-2006 07:46 PM
Re: SET RMS question
Setting a large number of local buffers of course should not cause corruption. If you believe it does, then be sure to report it to HP support with the exact (up to date?) system version and hopefully a reproducer of some sort. I'm not aware of problems in this space.
Please note however that setting a large number of local buffers is entirely useless and potentially counter productive for most applications.
If at all possible be sure to evaluate a progression like 4, 16, 64,... buffers.
I do not expect any improvement beyone 8 buffers and an increased CPU time and lock usage beyond 30 buffers (approx). This woudl depend on you exact system (CPU speed, memory speed) and would nto be VMS/RMS version dependend.
If you decided to experiment with this, then kindly report back the results?!
The problem with local buffers is that RMS maintains them in a simple sorted (hmmm, I shoudl check that) linked list and has to walk that list every time again, where really (notably for sequential files) you do not expect to have more that 1 active buffers in general and a few more during the read/write times.
Convert (for output) and ANAL/RMS use BLOCK IO, so they do not use the standard buffers at all.
Check with ANAL/SYS... SET PROC... SHOW PROC/RMS=(FAB,BDBSUM)
It is really hard to imagine how it would impact lower/uppercase letters. The only time those sould have an impact is in the indexed file sorting order. The key values with lowercase chars will normally come first in the indexed file, unless the key has a specially COLLATING SEQUENCE key type.
For better help, please attach a (.txt) file with pertinent details (dump/reco, anal/rms/fdl...)
Hope this helps
Groetjes (uit Amsterdam deze week)
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2006 07:32 AM
04-19-2006 07:32 AM
Re: SET RMS question
Pardon my insubordination (;-) -- I've never used lowercase letters in the key before -- but since uppercase letters have a lower ASCII value than lowercase, wouldn't uppercase come first?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2006 07:21 PM
04-19-2006 07:21 PM
Re: SET RMS question
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 08:46 AM
04-20-2006 08:46 AM
Re: SET RMS question
As expected, the problem that triggered the question was not at all RMS related.
OpenVMS Developer & System Manager