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 Mike Lewis 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. pentegr

    Cobol format file conversion

    Could you provide a description of what you are going to be using the tabular file format for?
  2. pentegr

    Random vs Sequential read - time diffs

    Tx tcsbiz !!!! I was hoping there'd be a short answer to this ... I guess there never really is though :)
  3. pentegr

    Random vs Sequential read - time diffs

    Thanks for your replies so far guys, maybe I hadn’t phrased my question clearly enough so a brief example may help clear up what I’m looking for Say I have a file of one million records. It is a VSAM file sorted in key sequence. I don’t think the storage medium makes that much difference in...
  4. pentegr

    Random vs Sequential read - time diffs

    Anyone got an idea of the typical time difference between a cobol sequential or a random read of a single record. Prefereably a referance in generally accepted documentation I'm looking for a ratio rather than an absolute time which would obviously vary from platform to platform. I'd like some...
  5. pentegr

    cobol and ispf

    Don't know if you're still looking for help mate but here's a starting point: Your installation has probably modified the initial screen you get after login, but you should still find a menu option that takes you to the program development facility (PDF) From the next screen things should be...
  6. pentegr

    Cobol Execution Issues

    Have you tried putting the full path of each of the files in your select statements. You may need to include the path between quotes as in: SELECT TST-FILE ASSIGN TO "C:\COBOL\PROJECT\TST-FILE.TXT".
  7. pentegr

    Error Status 23 while attempting to delete record from an indexed file

    If you're allowing duplicates on your primary key, you are bound to pick up problems with your read , delete and rewrite statements. This is because, with duplicates allowed on primary keys, you cannot uniquely identify records within a file.
  8. pentegr

    Read a .csv file in Cobol

    The code you have provided doesn't replicate your outcome. If I use the exact code & data you have provided, the output is correct ie. 01acti012008-04-15 01:42:032008-04-15 01:42:03 02acti022008-04-15 01:42:032008-04-15 01:42:03 (I'm not sure how you land up with the delimiter in your...
  9. pentegr

    Open Source Cobol Compiler

    Full IDE would be great, but I'd settle for just the compiler at the moment
  10. pentegr

    Open Source Cobol Compiler

    Has anyone come across an OSS cobol compiler that isn't going to require a major re-write? I'm going to be taking some noobs through a bit of Cobol training and don't want to first have to explain TSO and JCL basics to them before they can write a simple "hello world" program. We were hoping to...
  11. pentegr

    svc 13

    What platform you working on noob?
  12. pentegr

    Reading Variable length KSDS file

    The file status code 04 will also be returned if the value of WS-CUSTMSTR-LENGTH doesn't correspond to the record you have just read. From your code it is not possible to see where you are setting the value of this field. My suggestion is to display the value of WS-CUSTMSTR-LENGTH and check this...
  13. pentegr

    Force list box selection

    I have a list box on a form which I want to force users to make a selection from in order to continue a process. Example:user must make a selection from ProdList and then hit a "Display" button. This will result in a function being called that will display information about the product...
  14. pentegr

    Developing COBOL off m/f, but for m/f use

    For the price of Websphere licensing fees you may as well run your dev and testing through the bog standard TSO/ISPF on the m/f (unless of course you want to make use of all the java stuff which is what Websphere is essentially for) Now unless you're mucking about on a toybox without the...
  15. pentegr

    cobol inspect

    You'll probably find reference modification far better suited and less complicated for removing spaces from a string
  16. pentegr

    Standard Functions

    see a list of ANSI cobol '74 & '85 reserved words here: COBOL Reserved Words If you don't find it in this list ... it's an intrinsic function G
  17. pentegr

    Standard Functions

    IMHO anything prefixed by the word "function" couldn't be considered 85-standard. Although many similarities exist between different installations (Microfocus / Enterprise etc) these are all strictly speaking "intrinsic" functions as opposed to the standard cobol verbs like EVALUATE & INSPECT
  18. pentegr

    Query help

    If you're looking for all the employee itersted in int_id 1 or 3 try this: SELECT comp_id, empl_id FROM yourTable WHERE int_id IN (1,3)
  19. pentegr

    Combining Batch and Interactive programs

    Here's a useful link that'll get you started with indexed files if you're not too familiar with them Indexed Files
  20. pentegr

    Combining Batch and Interactive programs

    A simple solution would be to set up and open an indexed file for input output (I-O). You could then maintain records interactively on the file as well as carrying out batch processing

Part and Inventory Search

Back
Top