Search results

  1. V

    reading file owner on the file system

    There is no file-info attribute to read the owner of the file, however OS-COMMAND seems to be a good option.
  2. V

    Break By & By

    Thanks Safen, for such useful information. A very simple scenerio - Break-by will be used when we have to do some processing on either first or last record of group like- The program demand a display like - Sales Rep name Sale Date Price ABC 10/12/07...
  3. V

    Lock Table

    Lock table is virtual system table. you can access it by _lock table. For a progress session, the number of locks are predefined in pf file, if the lock exceeds that number then the lock overflow message appears. To overcome this, handle the locks properly so that no unused lock left in the...
  4. V

    rereadnolock parameter

    The Progress Version is 9.1 D. the message we are getting is "SYSTEM ERROR:- s exceeded, Raising STOP condition and attempting to write stack trace to file "procore" consider increasing -s startup parameters. (5635)"
  5. V

    rereadnolock parameter

    Hi we just put rereadnolock parameter in our pf file and start getting error for queruies using "Field" option. Please refer to following page http://www.progresstalk.com/archive/index.php?t-85986.html Can any one provide a suggestion/solution for this? Regards Veenit Kansal
  6. V

    Difference between DO and REPEAT

    Repeat associate with many default properties with it like Framing Scoping Transaction While with Do no such default properties are associate. In case of functional behavior both works on same way, but due to default properties associated with REPEAT use it as less as possible in programming...
  7. V

    Difference Between FIND FIRST and FOR FIRST

    Hi The difference is following 1. For start a loop while find does not. 2. Find can not use multiple indexes while for can use. In case we does not have need to use multiple index and single record always use find otherwise use for.
Top