Consultor Eletrônico



Kbase P29742: SQL-92 server still sees the old DLC setting loc1 when installation has been OS copied to a new loca
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   06/12/2005
Status: Unverified

FACT(s) (Environment):

Progress 9.1C
UNIX

SYMPTOM(s):

SQL-92 server still sees the old DLC setting loc1 when installation has been OS copied to a new location loc2

Following message seen from database lg file
DLC from ENVIRONMENT VARIABLE is:loc2

Only uses proserve to start SQL-92 server

CAUSE:

20000901-019

CAUSE:

The tailored installation script checks DLC in wrong order - installation first, custom DLC last

FIX:

Upgrade to 9.1D or use following workaround:

Manually replace DLC in $DLC/bin/proserve with the new location, then restart database with the modified script.

Following is the line to change

for what_dlc in "loc1" "$DLC"
do
[ ! -d "${what_dlc}/java" ] && continue
DLC=$what_dlc
export DLC
break
done

should be changed to

for what_dlc in "loc2" "$DLC"
do
[ ! -d "${what_dlc}/java" ] && continue
DLC=$what_dlc
export DLC
break
done