Installation Note 38895: An error occurs when you configure the Operating System Services Scheduler for a SASĀ® 9.2 encoding that is not US English
When installing SAS 9.2 with an encoding other than US English, the SAS® Deployment Wizard might fail with an error during the step in which you configure the Operating System Services Scheduler. To correct this error, locate the following lines from the path configuration-directory/Lev1/SASApp/SchedulingServer/SchedulingServer.sh:
if [ -n "$METAUSER" ] ; then
cmd="$cmd -metauser \"$METAUSER\""
fi
if [ -n "$METAPASS" ] ; then
cmd="$cmd -metapass \"$METAPASS\""
fi
Replace the code that is shown above with the following lines:
if [ -n "$METAUSER" ] ; then
cmd="$cmd -metauser \"`echo $METAUSER | iconv -fibm-1047 -tIBM-1141`\""
fi
if [ -n "$METAPASS" ] ; then
cmd="$cmd -metapass \"`echo $METAPASS | iconv -fibm-1047 -tIBM-1141`\""
fi
Operating System and Release Information
SAS System | SAS Data Integration Server | z/OS | 4.2 | 9.3 | 9.2 TS2M0 | 9.3 TS1M0 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Installation Note |
Priority: | medium |
Date Modified: | 2013-12-23 14:22:23 |
Date Created: | 2010-03-02 08:41:03 |