SiouxCityElvis
Programmer
I'm working with importing a huge flat file approximately 1 Gig.
SELECT UCC-INPUT ASSIGN TO
"/nic/data/UM000204_01.txt"
ORGANIZATION IS LINE SEQUENTIAL
ACCESS IS SEQUENTIAL.
This is what is on my line 435:
OPEN INPUT UCC-INPUT.
The program compiles clean, but gets a runtime error as follows:
COBOL I/O error 94,67 on UCC-INPUT file /nic/data/UM000204_01.txt.
COBOL I/O error at line 435 in program NIC_IMPORTUCC.COB
Unfortunately, the book I have has a 94,66 description but no 94,67 error description on page A-28 of my User's Guide.
Do you know what a 94,67 error is?
The files I have in the /nic/data directory are and I'm only referring to the first right now:
UM000204_01.txt
UM000204_02.txt
UM000204_03.txt
UM000204_04.txt
UM000204_05.txt
UM000204_06.txt
Thanks.
-David
SELECT UCC-INPUT ASSIGN TO
"/nic/data/UM000204_01.txt"
ORGANIZATION IS LINE SEQUENTIAL
ACCESS IS SEQUENTIAL.
This is what is on my line 435:
OPEN INPUT UCC-INPUT.
The program compiles clean, but gets a runtime error as follows:
COBOL I/O error 94,67 on UCC-INPUT file /nic/data/UM000204_01.txt.
COBOL I/O error at line 435 in program NIC_IMPORTUCC.COB
Unfortunately, the book I have has a 94,66 description but no 94,67 error description on page A-28 of my User's Guide.
Do you know what a 94,67 error is?
The files I have in the /nic/data directory are and I'm only referring to the first right now:
UM000204_01.txt
UM000204_02.txt
UM000204_03.txt
UM000204_04.txt
UM000204_05.txt
UM000204_06.txt
Thanks.
-David