[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: KB Entry P133222

  • Thread starter Thread starter marian.edu
  • Start date Start date
Status
Not open for further replies.
M

marian.edu

Guest
It really has nothing to do with internal entries (procedure, functions or even methods) nor with defined buffers, it’s all about some kind of ‘optimisation’ on index creation… no idea if it’s only for temp-tables or same holds true for database tables. DEF TEMP-TABLE tt NO-UNDO FIELD a AS CHAR FIELD b AS CHAR INDEX pk a INDEX idx a b. DEFINE BUFFER btt FOR tt. CREATE tt. tt.a = 'test'. FIND FIRST tt WHERE tt.b > '' NO-ERROR. MESSAGE 'tt' SKIP AVAILABLE(tt) VIEW-AS ALERT-BOX. FIND FIRST btt WHERE btt.b > '' NO-ERROR. MESSAGE ‘btt' SKIP AVAILABLE(btt) VIEW-AS ALERT-BOX. Marian Edu Acorn IT www.acorn-it.com www.akera.io +40 740 036 212

Continue reading...
 
Status
Not open for further replies.
Back
Top