Search results

  1. K

    Trapping database corrption using probkup

    I think most of this data is gotten using the index blocks -- a dbanalys and idxanalys both parse through all the blocks in the database and assemble record and index summaries, but the indexes themselves are NOT scanned for corruption. They are simply scanned for size/b-tree node count, etc...
  2. K

    Trapping database corrption using probkup

    One thing to remember with dbanalys is that it ONLY scans data blocks. Index block corruption can only be detected using idxcheck, but at this time idxcheck is terribly slow, especially with word indexes. dbrpr works well, but is an unsupported utility. We have seen index corruption cases that...
  3. K

    Adding new instance property to all SmartObjects

    :blush: Figured it out. In one of the documentation pieces on extending smartobjects, it is indicated that you add a property on to the instance property global define using something like: &glob xpInstanceProperty [propertyname] In the custom property include files. However, what you REALLY...
  4. K

    limiting the number of rows in a resultset

    Nope Progress doesn't have a record limiter, so if you want 10 records of a million record resultset, you get a million records. I believe you can set a limit to the size of a query resultset, but it still will process through the entire million record resultset, especially if you do sorting...
  5. K

    Adding new instance property to all SmartObjects

    I've been working on extending the ADM2 SOs for our new GUI project. I've added a new instance property to the entire SO tree by editing the smrtpropcustom.i and other associated smart.p customization objects to add this property: ghADMProps:ADD-NEW-FIELD('ImpSmartSecurity', 'CHARACTER', ...
Back
Top