Search This Blog

31.1.11

Food for Thought - Episode 7 (Answered)

What is the reason behind following error:



Fatal Error: File data set, file "{0}".; output of "ImportSP": the record is too big to fit in a block;

Give this challenge a shot. Reply.

1 comment:

  1. This error can occurred when the record is larger than a single transport buffer block. The default size for a buffer block is 32,768, the max limit is 1,048,576.

    so to fix this problem set the environment variable APT_DEFAULT_TRANSPORT_BLOCK_SIZE greater than size of record.

    ReplyDelete