Consultor Eletrônico



Kbase P66000: Error 2696 with TT not having index defined.
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   03/11/2009
Status: Unverified

SYMPTOM(s):

Error 2696 with TT not having index defined.

Stash area exceeded maximum size. (2696)

FACT(s) (Environment):

OpenEdge 10.0A

CAUSE:

define temp-table tt no-undo
field f1 as character.

def temp-table traw no-undo
field rBuffer as raw.

create traw. /* have to do this because you can't raw-transfer to a variable */

def var i as int no-undo.

create tt.
assign tt.f1 = 'Hello World, this is a memory leak'.

raw-transfer tt to traw.rbuffer.

do i = 1 to 1000000:
raw-transfer traw.rbuffer to tt.
/* Note we're not creating new - just overwriting the current buffer */
end.

empty temp-table tt.
empty temp-table traw.

FIX:

None at this time