Search results

  1. J

    unable to delete a table

    And may be freeze the renamed old table as well. Any idea if the CRC gets affected for the programs that use that specific table? Would it need a recompile? Thanks Joel
  2. J

    unable to delete a table

    Thats a good suggestion. Thanks Joel
  3. J

    unable to delete a table

    "SQL Drop table" does not work. We are going to do a Dump and Reload. No other option left. Thanks anyways.
  4. J

    unable to delete a table

    Thanks for the reply. There are no triggers defined. I will try the "SQL Drop table" and let you know. Thanks Joel
  5. J

    unable to delete a table

    Yes I committed the deletions of the indexes.
  6. J

    unable to delete a table

    Dear All, I have a 9.1D db and I am not able to delete a particular table in the DB. When I try to delete the table I get a message saying "** Field <field-name> is a component of an Index. (185)" But I have deleted the indexes which use that specific field. What could be the reason? Please...
  7. J

    Call hierarchy

    Thanks much Tom.
  8. J

    Call hierarchy

    Thanks Cringer.
  9. J

    Call hierarchy

    Thanks for the reply. I am trying to find / understand the flow of the program. So currently I am using the text search (search the procedure-name) to find the flow and so was curious if there was any easier way to find the flow without executing the code. Thanks Joel
  10. J

    Call hierarchy

    All, Is there any tool available to find out the call hierarchy in Progress / OE code? Any options in compilation like XREF would do this? Please let me know. Thanks Joel
  11. J

    external dll call from a class

    Could someone let me know how can I define the following from within a class. PROCEDURE WinExec EXTERNAL "KERNEL32.DLL": DEFINE INPUT PARAMETER prog_name AS CHARACTER. DEFINE INPUT PARAMETER prog_style AS SHORT. END. Thanks Joel
  12. J

    Static variable in Openedge / Progress

    Is it possible to define a static variable in OpenEdge like we do in C? Thanks Joel
  13. J

    retreiving number of copies from system-dialog printer-setup

    Is there a way of retrieving the 'number of copies' from the system-dialog printer-setup statement? Thanks Joel
  14. J

    How to retrieve PRINTER-NAME in Progress Session

    Thanks a ton. This helped us a ton.
  15. J

    "FOR FIRST" or "FIND FIRST"

    Would like to know which of the following is better in terms of performance? FOR FIRST cus where cus.cus-code = 123 exclusive-lock: cus.credit = 0. END. or FIND FIRST cus where cus.cus-code = 123 exclusive-lock no-error. if available cus then cus.credit = 0. Thanks Joel
  16. J

    -lkwtmo "lock wait timeout” parameter

    Can anyone tell me if -lkwtmo "lock wait timeout” parameter be changed through a program for a client session? Thanks Joel
  17. J

    NO-WAIT feature in FOR statement

    Does someone know of a built-in feature of "NO-WAIT" with a FOR statement while doing a exclusive lock? I know the following workaround which uses a no-lock for the "FOR statement" and using a "find with a no-wait" on the buffer of "FOR each" table. def buffer buf-cus for cus. For each cus...
  18. J

    OE Architect

    Got you. Thanks much. That makes sense. I am not connected to the DBs yet so thats the reason. Thanks again. Joel
  19. J

    OE Architect

    I am using OE Architect. When I add a linked resource for example say a .w file there is a red "x" icon against that resource. Any idea what that indicates. Could some one clarify? I have attached a screen shot of this. Thanks Joel
Back
Top