Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. RonaldB

    Keycounts in Cobol

    You could probably get the same result from a sorting utility like syncsort which can also condense on a value and count the no. of records condensed. Moreover, it would probably be faster. Other then that, indeed, sort on key, process each key until level break while counting and display or...
  2. RonaldB

    MOVE question

    The decimal point in the sending field causes the MOVE to be regarded as alphanumeric, not numeric, which probably causes the receiving field to be filled strangely. Get the sending field to contain actual numeric data and you'll be fine. -------- Regards, Ronald.
  3. RonaldB

    Why Are Cobol Compilers Sooo Expensive?

    ... and one of the very few (or even the only one?!!) with an internationally accepted industry standard behind it. -------- Regards, Ronald.
  4. RonaldB

    sort

    I'd like to add that, since specialised sorting utilities are usually quite efficient, external sorts often are a lot faster. Moreover, a control card with some parameters for a sorting utility is easier to maintain than a COBOL program. -------- Regards, Ronald.
  5. RonaldB

    Why Are Cobol Compilers Sooo Expensive?

    Don't forget that most COBOL compiler builders aim at the professional market, and when buying a package from one of them, you don't only buy the compiler but also the support behind it. Maybe COBOL just isn't interesting enough for the everage hobbyist... -------- Regards, Ronald.
  6. RonaldB

    ims db

    You can find the complete IBM documentation on IMS on their site, where it is available online: http://www-3.ibm.com/software/data/ims/library.html -------- Regards, Ronald.
  7. RonaldB

    Need some Help with Cobol code!

    When i'm not mistaken, up 'till now this is an all dutch thread; nietwaar, jongens? C'mon guys, throw in some international input! -------- Regards, Ronald.
  8. RonaldB

    Move a PIC X field to a COMP-3

    Jack, right; i made the assumption when backing up Crox that the X(10) field would contain zoned numeric data; also, in dhecht's example, the X(10) and S9(10) COMP-3 suggests that he expects 10 bytes of alphameric data to map onto 6 bytes of packed-decimal data. Nevertheless, dhecht, your...
  9. RonaldB

    Move a PIC X field to a COMP-3

    dhecht, Crox is right; that redefinition definitely is not going to do the trick. -------- Regards, Ronald.
  10. RonaldB

    Need some Help with Cobol code!

    If all files are sorted on persnumber order, there is no need for repeated opens/closes nor for internal tables; a three-file balance line program will do. I don't have the time to write it out in code; anyone? -------- Regards, Ronald.
  11. RonaldB

    Seperating a phone number field

    ... and then there's reference modification: 01 OLD-NBR PIC X(10) VALUE '2176252115'. 01 NEW-NBR PIC X(13). STRING OLD-NBR (1 : 3) '-' OLD-NBR (4 : 3) '-' OLD-NBR (7 : 4) DELIMITED BY SIZE INTO NEW-NBR. -------- Regards, Ronald.
  12. RonaldB

    COBOL....maintenance programs

    Not entirely so; at my shop, different demands are made for programs that just query data collections (namely databases) then for those that actually edit data, like checkpointing and such. So the difference is not just academic. -------- Regards, Ronald.
  13. RonaldB

    COBOL....maintenance programs

    Jack, Quote: "Why are we fighting over the answers?" end quote; just for the fun of it... :D -------- Regards, Ronald.
  14. RonaldB

    COBOL....maintenance programs

    Oops! Er... Regards, Ronald. P.S. I'm used to having a fixed signature on some other forums.
  15. RonaldB

    COBOL....maintenance programs

    Some method for forming test cases formulated it as: CRUD (Create - Replace - Update - Delete). Any inquiries (like print...) aren't strickly maintenance functions, although often needed for at least two of the others.
  16. RonaldB

    STRING removing leading spaces?

    Crox focused on removing leading spaces before concatenation, and therefore can very well lead to the solution. If pulling a donkey doesn't work, try pushing it. Regards, Ronald.
  17. RonaldB

    COBOL source generator?

    All, sorry for getting back this late; i've been a bit busy. I know of Cool:gen, and i have used Telon often, but both products are primarily aimed at online dialogs. Both Cool:gen and Telon have some batch-processing abilities, but these are limited to basic report processing. Also, both...
  18. RonaldB

    COBOL source generator?

    I was wondering if anyone knew of a sort of source generator for COBOL programs. I envision a tool, preferably visual, which makes it possible to enter a program structure using any of the known structuring methods or a derivative, and offer the possibility to enter specific code for each...
  19. RonaldB

    Hello. May sound strange, but I'm n

    Sorry, that should have been "Oriented". Regards, Ronald.
  20. RonaldB

    Hello. May sound strange, but I'm n

    Business. COmmon Business Orientated Language. If i'm not mistaken, that is. Regards, Ronald.

Part and Inventory Search

Back
Top