Hi ,

I just want to write the following shell script.

Shell Script
========
sqlplus system/manager < select * from v$logfile;
EOF


But when I am executing the same , getting error for : table v does not exist.

Because unix is understanding "$logfile" as a PARAMETER.

How to overcome this problem?

Thanks