What causes this error?
dc205006 NVSAM ERR FUNC=11 FDBK=000 R15=00 NVST=05
IDMS - All Supported Releases
This is usually a problem with the Native VSAM FILE definition in the DMCL...for example:
CREATE FILE segment.filename
ASSIGN TO ddname
KSDS FOR CALC FOR SET setname;
(where setname is the name of a set defined by a schema SET statement with
the VSAM INDEX clause.)
The error occurs if the FOR CALC or FOR SET parameters are missing.
Please see the DBA Adminstration manual, chapter 6, FILE statement.
If application programs (like OLQ) issue FIND/OBTAIN CALC on the NVSAM
KDSD records, the FILE definition must say KSDS FOR CALC.
If this clause is omitted, the program will get 0383 and there will
be a DC205006 on the log with FDBK= 000 R15= 00 NVST= 05
Same will occur if you reference the record with a SET definition and don't have
the FOR SET setname clause on the FILE definition.