Search results

  1. Rob Fitzpatrick

    Named arguments for ABL procedures.

    I don't know about anyone else, but I'm very suspicious of a PDF attachment that claims to contain source code. PDF files are often used to distribute malware. Is there a reason you can't post the code or, at worst, attach a .txt file?
  2. Rob Fitzpatrick

    Question Request for Guidance on Upgrading Progress Database from Version 11.7 to 12.8

    I don't understand your situation. You originally said: I assumed "our" referred to your organization and that that organization is a Progress customer or a customer of a Progress application partner. How do you usually get technical support for OpenEdge? You need to sort that out before you...
  3. Rob Fitzpatrick

    Named arguments for ABL procedures.

    Please enclose code in [ code ] [/ code ] tags (remove the spaces).
  4. Rob Fitzpatrick

    Question Request for Guidance on Upgrading Progress Database from Version 11.7 to 12.8

    https://community.progress.com/s/supportlink-landing
  5. Rob Fitzpatrick

    Question Request for Guidance on Upgrading Progress Database from Version 11.7 to 12.8

    I see the message "grep: warning: stray \ after p". I have seen that too in 12.8.7 when trying to start a test PAS instance. I don't know the cause. This could be an OpenEdge bug. I suggest you open a case with Tech Support.
  6. Rob Fitzpatrick

    Progress Engineer vs. Independent Contractor

    I don't envy you. I used to work on an app with a GUI client and there are lots of issues that can arise with compiled code. The r-code of a GUI client incorporates not just the functionality in the source but also a number of aspects of the compile machine/Windows session/ABL session. This...
  7. Rob Fitzpatrick

    Question Request for Guidance on Upgrading Progress Database from Version 11.7 to 12.8

    You can use proutil dbname -C describe to see the internal version number of the database. Here are two examples: $ proutil sports -C describe OpenEdge Release 11.7.16 as of Fri Nov 18 14:05:47 EST 2022 OpenEdge Database Description Database Name : /data/rob/db/11/11.7/sports...
  8. Rob Fitzpatrick

    Question Request for Guidance on Upgrading Progress Database from Version 11.7 to 12.8

    Well done on installing OE 12.8. A database upgrade is not the same thing as an OpenEdge upgrade! A database has an internal version number that is tied to the OpenEdge major version that either created or upgraded the database. In other words, a database created in OpenEdge 11.x, or upgraded...
  9. Rob Fitzpatrick

    Long running transaction by a user and his activity code

    Some more info on the Client Statement Cache and how to use it.
  10. Rob Fitzpatrick

    Long running transaction by a user and his activity code

    Please provide your OpenEdge version number. It matters when dealing with issues of how OpenEdge behaves, and in particular when parsing output of Progress utilities. When providing data from promon, please also provide the column headers so we don't have to guess what the data means.
  11. Rob Fitzpatrick

    Setup Level II Storage Guide

    Unfortunately, Progress doesn't provide a useful way to document structure. Structure file comments are useless as they are not written into the database. So, for example, they are discarded after a prostrct list. It is yet another limitation with structure management. One solution is to...
  12. Rob Fitzpatrick

    Question Request for Guidance on Upgrading Progress Database from Version 11.7 to 12.8

    Yes, you do. From late v11 to 12.8.3, you could directly install an up-to date OpenEdge installation with just the update install package. E.g. you could install 12.8.3 in an empty directory, without having 12.8 already installed. As of 12.8.4, you need two install packages: the 12.8.0...
  13. Rob Fitzpatrick

    Setup Level II Storage Guide

    Great idea. Lots of developers/DBAs have spent lots of hours extending and contextualizing PSC's tool output to make it more useful. There is so much more they could do. As a community, we would be much better off if they did it. A rising tide lifts all boats, as they say. Also, in this...
  14. Rob Fitzpatrick

    Setup Level II Storage Guide

    This is an excellent point. It would be very useful to have information about field-level distribution of field lengths. I suppose we can get a list of the worst offenders with a dbtool SQL width scan.
  15. Rob Fitzpatrick

    Setup Level II Storage Guide

    Objects to areas I have a loose collection of unwritten rules in my head about assignment of objects to areas. I should write a blog post about that at some point. In no particular order: There should be no application objects in the schema area. All data storage areas should contain objects...
  16. Rob Fitzpatrick

    Setup Level II Storage Guide

    I never did figure that out. It is eight bytes, so it could be a block address. I guess it's a question for Gus or Rich, or someone else who was on the engine team in the v9 days. I'm not sure what it's purpose would be. It seems like several ideas that got past some review stage in the...
  17. Rob Fitzpatrick

    Setup Level II Storage Guide

    My choice would be to let it happen on the next create. It may not make much difference if record sizes are quite uniform, or always larger than the toss limit. But for tables with smaller records or more variability in the record sizes, it may be that another record the same size the one just...
  18. Rob Fitzpatrick

    Setup Level II Storage Guide

    Sorry, I'm writing faster than I'm thinking. That's the correct calculation. I think they are comparing physical block offsets to the clustersize, which gets thrown off by EH blocks in extent 2 and beyond.
  19. Rob Fitzpatrick

    Setup Level II Storage Guide

    Some remaining bugs in option 13: bad parsing of EH block as Type 2: Customer/Order Area (8) Extent 1 Block 1 ----------- 0000 bk_dbkey: 0x00000000 0 bk_type: 0xfe 254 (Extent Header Block) bk_frchn: 0x7f 127 (NOCHN) bk_incr...
  20. Rob Fitzpatrick

    Setup Level II Storage Guide

    Yes. What I refer to as "the RM header" is numdir, freedir, and free. Dbrpr was enhanced in 12.8, to show more details of the RM header and the row directory. Rowids are new, along with some new base conversion. They also fixed one or two bugs. E.g. the phantom partitionId field between...
Back
Top