login error because of indentation isql

The below works

/usr/sybase/bin/isql -S${SERVER} -D${DB}  -U${ID}  -P${PASSWD} -w 250   -n  <<EOF > output

The below is indented but doesnt work when

 /usr/sybase/bin/isql  -S ${SERVER}  \
    -D ${DB}   \
    -U ${ID}   \
    -P ${PASSWD}   \
    -w 250                  \
    -n  <<EOF > output

would appreciate help in correcting the above indented one.

Hi
You have to remove space between the tags and the variable names.
means:

 -D${DB}   \

Cheers