How to select column with # in name in shell script?
Anyone know how to select a column with a # in the name in a shell script ?
Example:
sqlplus<<EOF
/ as sysdba
select obj# from scheduler\$_window
;
EOF
I've tried \#, I've tried quotes--both " and '. I've tried multiple \s. How do I get the shell to treat the # like any other character instead of the start of a comment?
Any thoughts?
Richard
Example:
sqlplus<<EOF
/ as sysdba
select obj# from scheduler\$_window
;
EOF
I've tried \#, I've tried quotes--both " and '. I've tried multiple \s. How do I get the shell to treat the # like any other character instead of the start of a comment?
Any thoughts?
Richard
0