Search results

  1. tamhas

    Answered Browse Open Query on temp table or bare table?

    Then, what does this mean? 2. live update of data whilde browsing
  2. tamhas

    Answered Browse Open Query on temp table or bare table?

    Say a bit about how you are controlling transaction scope. One of the reason for working against local tables or variables is so that there is no open transaction while you are doing the work and a very short transaction with no UI to commit the changes to the DB when done.
  3. tamhas

    Protop SQL activity - Rec Lck

    One might note that the default in ABL is share-lock and one has to explicitly say "no-lock".
  4. tamhas

    Inherited what I think is a backup of a progress database.....need assistance

    I would think the first question would be whether or not there is a Progress installation on the machine somewhere. If that backup file was indeed created in May, then it seems likely. Also, who created that ... something else you could find in the log. Are they still around? Probably a lot...
  5. tamhas

    Question Copy replication trigger assignments.

    I can't see how there is a chance of any problem. Why does this seem like an invitation to a real head scratcher!?
  6. tamhas

    Benefits of using FIND FIRST over FOR FIRST and FOR FIRST over FIND FIRST ?

    Quite aside from the vagaries of sort order and the like, it is almost certain that treating the first record of a group as special is a violation of good relational design. It is certainly reasonable to do a CAN-FIND test to determine whether or not there is one or more records matching...
  7. tamhas

    How long has this been wrong?

    I suppose the question now is, how long will it stay that way...
  8. tamhas

    Seeking great OpenEdge GUI development tutorial

    And only post to one forum with the same question.
  9. tamhas

    Benefits of using FIND FIRST over FOR FIRST and FOR FIRST over FIND FIRST ?

    Have you considered doing write-ups like this and posting them on wss.com so that you just need to drop the URL to respond thoroughly?
  10. tamhas

    Normalization

    It is probably worth noting that, if the concern for performance is based on the existing unified database, it is quite likely that something else is the source of the performance issues, rather than it coming from a unified database.
  11. tamhas

    Normalization

    Important in this evaluation is that it is highly likely that some transactions will span databases, necessitating two phase commit and the risk of one side of that transaction failing.
  12. tamhas

    Normalization

    Perhaps all present know this, but I think it is worth saying explicitly ... some databases have table relationships expressly specified in the data structure of the database, but Progress does not. Some packages have naming conventions like those referred to above, sometimes complicated by a...
  13. tamhas

    Sharing variables across internal procedueres.

    Notably, object-oriented constructs.
  14. tamhas

    Resolved Static or Dynamic

    While implied by what Tom said, I think it is worth noting that dynamic code tends to be obscure while static code can be very clear in intent and purpose.
  15. tamhas

    Sharing variables across internal procedueres.

    Declaring the variable in the enclosing program will allow you to use it in both places, but is sloppy programming. Much better to explicitly pass in any values needed by the outside program and to explicitly return any values needed later.
  16. tamhas

    Confused on Record Bleeding

    My first question is, why would you ever write code like that? If, for example, you consistently used bcust throughout, I am sure the compiler would complain.
  17. tamhas

    Boolean value

    This really should be a new thread.
  18. tamhas

    Boolean value

    You seem to be confusing variables. Nowhere in your code do you set the value of tog_demo except with the initial clause so of course it is still false. And, why input since there is no UI statement in your code.
  19. tamhas

    Question Can OE DATABASE support 12,000 concurrent users

    It would be an interesting question to ask at Progress Communities as for the largest user count that anyone has seen.
  20. tamhas

    Answered Saving a structuref procedure take to much time

    If you are up for restructuring this code, one design idea you might consider is encapsulating temp-tables in their own class with access methods to operate on the temp-table. That isolates knowledge of the specific schema of the temp-table to that class and everything else merely knows about...
Back
Top