- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- EDIT/FDL parameter conflict
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
01-16-2004 02:07 AM
01-16-2004 02:07 AM
http://www.openvms.org/phorum/read.php?f=5&i=268&t=268
but actually I guess my chances are a bit better here.
Sorry for any inconvenience.
Jan.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2004 02:19 AM
01-16-2004 02:19 AM
Re: EDIT/FDL parameter conflict
$SET DEF DSA3601:[TEMP]
$!
$EDIT :==
$!
$ANALYZE/RMS/FDL/OUTPUT=xx.FDL xx.FIL
$!
$EDIT/FDL/NOINTERACTIVE/EMPHASIS=FLATTER/ANALYSIS=xx.FDL xx.FDL
$!
$CONVERT/FDL=xx.FDL xx.FIL xx.FIL
hope this helps...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2004 02:34 AM
01-16-2004 02:34 AM
Re: EDIT/FDL parameter conflict
Good luck
Juerg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2004 02:45 AM
01-16-2004 02:45 AM
Re: EDIT/FDL parameter conflict
/SCRIPT=script-title
This qualifier controls whether the Edit/FDL utility begins the
session by asking a logically grouped sequence of questions to
aid you in creating the FDL file.
i.e implies /SCRIPT is for interactive use.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2004 02:53 AM
01-16-2004 02:53 AM
Re: EDIT/FDL parameter conflict
reading help seems you have create FDL before use /NOINTERACTIVE
Bye
Antoniov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2004 04:07 AM
01-16-2004 04:07 AM
Solutionfrom the openvms.org entry...
> Optimizing RMS performance should be done regularly, especially for bigger multi-indexed files having duplicate keys, even more if records are frequently deleted.
> Do this by ANAL/RMS/output=.. for the file.
Nitpicking... It is actually the CONVERT that does the optimize. Those large files tend to converge to a static optimized state, or a predictable growth. The ANAL/RMS becomes a waste of time. Just use output from an old one and tweak the record count!
> After that. EDIT/FDL can use the analysis with the OPTIMIZE script to generate a new xx.FDL file, which can be used to CONVERT the data file to an optimized version of it.
Great advice in general, but again for those large files it will be relatively easy to do better than EDIT/FDL, using a prior optimized FDL as basis. For those large files, which supposedly have a larger impact on over system recource usage/performance it is probably worth it to spend an hour reviewing the FDL, the usage expectation, and feeding some data into a spreadsheet (vms freeware, rms tools) or into an interactive edit/fdl session. Make your best guess, and do NOT allow edit/fdl/nointer to make a near-blind-folded decision.
groetjes,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2004 02:24 PM
01-17-2004 02:24 PM
Re: EDIT/FDL parameter conflict
Using EDIT/FDL/SCRIPT=OPTIMIZE is actually a misnomer! It's not possible to "optimize" a file automatically, since the system has no idea what aspect of the file you want to optimize for. Do you want to optimize for disk space?, fast lookups? fast insertions? Are there many inserts and deletes? Just inserts? are they ordered or random?
By definition, you can't optimize for *everything*. Optimizing *means* sacrificing some things to benefit other things. SCRIPT=OPTIMIZE "normalizes" everything, so there are no biases. It tries to compromise all the possible axes of performance. So, in some senses, it's really the exact reverse of "optimize".
For a well behaved file, decide what you really care about and work out a good FDL that optimizes the file in that direction(perhaps starting with the output of an EDIT/FDL *INTERACTIVE* session!) Use it for your regular CONVERTs. Forget trying to generate a new FDL every time. Your CONVERT scripts will be much simpler, and you'll me more likely to *really* optimize your files, rather than dragging them back into the middle of all roads.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 12:18 AM
01-19-2004 12:18 AM
Re: EDIT/FDL parameter conflict
Zahid, Juerg: That does indeed give decent results
Ian: Well, eighter HELP is unclear or I was not able to distill your explanation (which obviously is correct).
Antoniov: Yes, that is what I did!
Hein: d'n spiker op zunnen kop!
( = full hit! )
John: Yeah. Optimize for what? If in these days you should try to explain to management you're spending hours at specialist's tariff to gain giga-(or even only mega-)bytes of storage which cost peanuts..
The only really counting optimization will we EXPIRIENCED (= interactive) perfomormance.
My reason for the question: I took the command straight from a slide of "RMS indexed file performance" of the performance stream at last november's bootcamp. And since we have some applications with multiple gigabyte, 6+keys, RMS files with substantial INSERTs, MODIFYs (also changing secundary duplicates=yes keys), and DELETEs, I am trying to please the user community a bit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 10:39 PM
01-19-2004 10:39 PM
Re: EDIT/FDL parameter conflict
Purely Personal Opinion