Consultor Eletrônico



Kbase P10140: SQLLOAD utility goes into infinite loop when loading .DSQL f
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   27/01/2003
Status: Unverified

FACT(s) (Environment):

Progress 9.1D

SYMPTOM(s):

SQLLOAD utility goes into infinite loop when loading .DSQL file

Committed <n> rows of File <filename>

CAUSE:

An infinite loop can be caused by specifying "-c" instead of "-C" as the command line argument for specifying the code page to use when loading the file.

For example, the following will cause an infinite loop:

sqlload -t PUB.MYTBL -c iso8859-1 -u me -a mepass progress:T:localhost:2500:test

and the following will work properly:

sqlload -t PUB.MYTBL -C iso8859-1 -u me -a mepass progress:T:localhost:2500:test


FIX:

Change the "-c" parameter from lowercase to uppercase (i.e. "-C")