Exécution procedure stocké par shell
bonjour,
voulant executer une procedure stockée depuis ma machine unix, j'obtient l'erreur suivante que j'avoue , ne pas arriver à comprendr.
Citation:
ERROR at line 1:
ORA-01858: a non-numeric character was found where a numeric was expected
ORA-06512: at "SYSADM.EXTACT_CDR", line 134
ORA-06512: at line 1
voici mon code
Code:
1 2 3 4 5 6 7 8 9 10 11
|
ORACLE_HOME=/home1/oracle/app/oracle/product/8.1.6
#ORACLE_HOME=/export/home/oracle/OraHome1
export ORACLE_HOME
PATH=/bin:/usr/bin:/usr/sbin:/opt/bin:/usr/ccs/bin:/opt/local/GNU/bin:/opt/local/bin:/opt/NSCPnav/bin:$ORACLE_HOME/bin
export PATH
cd /d3/instances/b5c/work/di/von
sqlplus sysadmin/sysadmin@B5C << END
exec extact_cdr;
END |