What care has to be taken to force program to execute above 16 Meg line ?


Make sure that link option is AMODE=31 and RMODE=ANY. Compile option should never have SIZE(MAX). BUFSIZE can be 2K, efficient enough.



Explore posts in the same categories: Cobol Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • What care has to be taken to force program to execute above 16 Meg line ?
  • Make sure that link option is AMODE=31 and RMODE=ANY. Compile option should never have SIZE(MAX). BUFSIZE can be 2K, efficient...
  • What Happens when you execute a program?
  • When you execute a program on your UNIX system, the system creates a special environment for that program. This environment...
  • What is the significance of ‘above the line’ and ‘below the line’ ?
  • Before IBM introduced MVS/XA architecture in the 1980's a program's virtual storage was limited to 16 megs. Programs compiled with...
  • What is the significance of ‘above the line’ and ‘below the line’ ?
  • Before IBM introduced MVSXA architecture in the 1980's a program's virtual storage was limited to 16 megs. Programs compiled with...
  • How do you debug your AE ?
  • To run a program in debug mode: Set the debug option. You can set the debug option in the following locations: Start PeopleSoft...
  • If I write System.exit (0); at the end of the try block, will the finally block still execute ?
  • No in this case the finally block will not execute because when you say System.exit (0); the control immediately goes...
  • What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
  • If we define the entity bean as being reentrant, multiple clients can connect to the Entity bean & execute methods...
  • Is it possible to execute code even after the program exits the main() function?
  • The standard C library provides a function named atexit() that can be used to perform “cleanup” operations when your...
  • Is there a way to force garbage collection?
  • Yes. Set all references to null and then call System.GC.Collect(). If you need to have some objects destructed, and System.GC.Collect()...
  • What is On-line Redo Log?
  • The On-line Redo Log is a set of tow or more on-line redo files that record all committed changes made...

    Comments are closed.