Hi,
When you import a file using BTEQ Import, Bteq try to combine as many records in a parcel as it can fit. So in your case you parcel length is exceeding the length CLI can handle.
You can avoid this error by using .PACK, this will limit the number of records which are being combined in a BTEQ import request.
for example you can place the .PACK 100, or replace 100 with a smaller value, until your parcels becomes within limit of CLI.
Place this before .Import command.
Hope it will help,
Hi,
When you import a file using BTEQ Import, Bteq try to combine as many records in a parcel as it can fit. So in your case you parcel length is exceeding the length CLI can handle.
You can avoid this error by using .PACK, this will limit the number of records which are being combined in a BTEQ import request.
for example you can place the .PACK 100, or replace 100 with a smaller value, until your parcels becomes within limit of CLI.
Place this before .Import command.
Hope it will help,