Kbase P78121: Session hangs with BUFFER-COPY and ASSIGN in the same statement
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  9/27/2004 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.x
SYMPTOM(s):
Session hangs with BUFFER-COPY and ASSIGN in the same statement
CAUSE:
The following code with the BUFFER-COPY and ASSIGN statement together in the same statement will hang the session.
CREATE table1.
BUFFER-COPY table2 TO table1
ASSIGN table1.field1 = table2.field1.
FIX:
Upgrade to OpenEdge 10.0A or later
FIX:
Split the BUFFER-COPY and ASSIGN in two statements:
CREATE table1.
BUFFER-COPY table2 TO table1.
ASSIGN table1.field1 = table2.field1.