Search results

  1. T

    How to Convert Integer to Character?

    input-field:Screen-value = "".
  2. T

    Connectivity to Web Services issue

    I had a similar issue, and had to go to Progress Tech Support to get all the issues and configurations resolved in order to get WebServices working.
  3. T

    Delete persistent procedure

    My procedure manager takes care of issues like this: http://www.oehive.org/project/proc-manager
  4. T

    10.1B unknown cause for record deletions

    If you can rule out sabatoge, my guess would be that something dynamic is doing the deed.
  5. T

    Locking errors / "physical redo" slowness

    The long redo is partly tied to PSC's not doing an fdatasync on shutdown, so on startup it redoes the last 2 bi clusters, unless a TX spans clusters, in which case it goes backwards through the clusters until it comes up clean. 10.1C does an fdatasync on shutdown, and only does the last 2 op bi...
  6. T

    New Application Development

    You don't need MVC to separate the UI from the BL, and then bolt on the UI's as appropriate. This may be a serious restructuring of the program, but it's not a re-write - unless the base code really that bad.
  7. T

    Limit of repeat/undo units per session reached. (9456)

    I've run into this problem myself, and if you're not doing iterative transactions, the solution is to replace your "REPEAT" statements with "DO WHILE". That'll give you the looping construct w/out the downside of bumping that particular transaction counter. Also, if PSC TS says they don't know...
  8. T

    message "how do i return focus to entry Field".

    In addition to the citations already made, there's also APPLY "ENTRY" TO widget-handle. or any other event for that matter. When a widget has focus, SELF = current-widget-handle, so this may do what you're looking for: ON event OF field DO: RUN some-code(self, OUTPUT status)...
  9. T

    Replication Triggers

    Use AI (After Imaging) for that.
  10. T

    Replication Question

    Been there, done that - except the replication system I created was peer-to-peer. 1) 8.3 / SCO is seriously outdated. Consider moving to 9.1E if at all possible, it is a lot faster than 8.3, and makes work like this possible. 2) Do not, under any circumstances, use text files as your log...
  11. T

    Initial value challenge

    Bring the db up in MU mode. Fire off as 10-20 processes - and have each one update the admincode field in a field. Updating multiple tables at the same time will be a big help here. If you're not blocking the updates into groups of 100 records / TX, that would also be a huge performance win.
Top