Am getting this "SP2-0734:: not found" error while runnning following script. Please help.
echo "Enter the CUSTOMER ID, CUSTOMER NAME AND FM/CH:"
read cust_id;
read cust_name;
read fm_ch;
echo "**";
echo $cust_id;
echo $cust_name;
echo $fm_ch;
`sqlplus -s itm_odb/itm_odb<<EOF
set serveroutput on feedback off linesize 1000 pagesize 0;
echo "heloo";
insert into customer_tbl values('$cust_i d','$cust_id',' $cust_name','$f m_ch','sysdate' ,'sysdate');
EXIT;
EOF
`
echo "Enter the CUSTOMER ID, CUSTOMER NAME AND FM/CH:"
read cust_id;
read cust_name;
read fm_ch;
echo "**";
echo $cust_id;
echo $cust_name;
echo $fm_ch;
`sqlplus -s itm_odb/itm_odb<<EOF
set serveroutput on feedback off linesize 1000 pagesize 0;
echo "heloo";
insert into customer_tbl values('$cust_i d','$cust_id',' $cust_name','$f m_ch','sysdate' ,'sysdate');
EXIT;
EOF
`
Comment