Consultor Eletrônico



Kbase P60888: Getting error 2715 during load through Data Dictionary with DataServer
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   31/01/2005
Status: Unverified

FACT(s) (Environment):

Progress 9.1D
Oracle DataServer

SYMPTOM(s):

Getting error 2715 during load of .d through Data Dictionary

Array subscript <index> is out of range. (2715)

Load fails

Data being inserted into a LONGRAW field

Data does get imported into ORACLE even with the error

CAUSE:

Bug# 20031125-044

CAUSE:

Load fails because the data dictionary code checks for errors during the load. If there are any errros, data dictionary halts the load.

FIX:

Option 1:
The bug is fixed in Progress 9.1D08 and above, OE 10.0A01,and 10.0B. Upgrade to one of these releases.

Option 2:
If the data being imported is correct, then you can workaround the problem by loading the file through a procedure where no errors are checked for. This is a bit harsh workaround, but a plausible one if you need to get past the error. This way the load will never halt nor fail.

Code to bypass the error.

input from file.d.
repeat:
create table-name.
import table-name no-error.
end.
input close.