Search results

  1. tamhas

    Question OPenEdge OpenEdge.Net.HTTP performance issue

    mixed bag of 11.7.x to 12.x.x. Sounds like an excellent way to get in all sorts of difficult trouble.
  2. tamhas

    Question Way to delete records of table from database? (DBA related query using and utility)

    I.e., it would help a lot if we knew the business problem you were trying to solve.
  3. tamhas

    How to release record locks in a repeat block inside a do transaction block

    I recommend that you think carefully about what you really need. For example, I can understand wanting to undo everything about a customer and their orders, while leaving everything about all other customers and their orders, plus treating the delivery flow as a separate transaction. What you...
  4. tamhas

    How to release record locks in a repeat block inside a do transaction block

    The solution, of course, is to change the transaction scope. Making the entire do block one transaction is obviously going to lock a LOT of records with those kind of numbers. What is not obvious is what scope is appropriate for your business needs. Possibly you could process the orders for...
  5. tamhas

    Site Slow

    Recently, the site has been very slow when first accessed. Today it is worse and everything is slow. Images are especially slow. Are we down to connecting with a 300 baud modem?
  6. tamhas

    Understanding IF NOT AVAILABLE STATEMENT

    Think of the FOR EACH returning a set. In the above code, the set is empty, so the enclosed code never executes. With the FIND, it is either going to find a record matching the criteria or not, but it will always proceed to the next line, so the not available is reported. Indeed, were I...
  7. tamhas

    Please Delete this thread

    There is a Syteline board.
  8. tamhas

    purge and resize db

    You should also think real hard about the value you are going to get by deleting data. Once deleted, it is no longer available for query and reporting ... you are losing information. Disk is cheap.
  9. tamhas

    if ambig workaround

    The other thing that screams to me from your code is transaction scope.
  10. tamhas

    Question PDSOE Debug settings

    "Architect_Is_Runnig"
  11. tamhas

    Question TCP vs. Shared Memory

    I was going to note that it is architecture specific. An application that fetches lots of records ... whether necessary or not ... will be significantly faster with shared memory than TCP, whereas one that fetches minimal records and minimal fields may not contrast nearly as much.
  12. tamhas

    Lock Table overflow error

    If it is supposed to be the fix, it is an awful fix.
  13. tamhas

    Change profile name

    Click on the tab in the upper right with your username and select account details.
  14. tamhas

    Lock Table overflow error

    Note to be very clear that the message is telling you that all the updates were a part of a single transaction and that explain running out of lock table space.
  15. tamhas

    Copying Changes from one DB to Another

    Or use the difference tool...
  16. tamhas

    Question Can we remove the space allocated for a table field in a frame when the field values is empty in CHUI?

    You don't say how you are doing the display, but if it is something like a loop with a display, then do one display of the first 6 and then test for non-null before displaying the 7th. This will, of course, require appropriate verbs for display that will allow you to keep control.
  17. tamhas

    could not create buffer object for table

    There is also a QAD forum on ProgressTalk. They might have more of a clue.
  18. tamhas

    Question Question on progress procedure mode

    Why not just put both updates within the same transaction ... and, turn off pstimer and any possible user input while running that transaction?
Back
Top