Recent content by SikandraShahid

  1. S

    How to run a .p with different database names.

    Hi Ramesh, Are databses not connected already with webbroker? Whats the operating mode you are using? Do you disconnect from the db once request is completed? It looks like session retains when the interval between the request is less. Regards, Sikandra
  2. S

    temp-table and indexes

    May be db is not connected.
  3. S

    running .p/,r from mouse click

    Write the Progress 4GL code in your .p (C:\MyApp\Main.p) file to update the database table and execute .bat file
  4. S

    Extracting table data and its column names

    Try this out . . . for each _field no-lock of _file break by _order: if first( _order ) then put unformatted _field-name. else put unformatted ", " + _field-name skip. end. . . .
  5. S

    How to count how many tables in a DB?

    Use the below statment to count the number of tables in ur db. SELECT COUNT(*) FROM _file WHERE NOT _hidden.
  6. S

    The server was unable to fork, ret=0 errno=2

    I am using OpenEdge 10.1B on Windows XP Professional. Regards, Sikandra
  7. S

    The server was unable to fork, ret=0 errno=2

    While trying to start a progress db in multi-user mode I am getting an error, which is written below. 13:34:36 BROKER This broker will terminate when session ends. (5405) 13:34:36 BROKER ** The server was unable to fork, ret=0 errno=2 (802) Could you please let me know why this is...
Top