REturn Value From Function into Bat File
589456Jul 23 2007 — edited Jul 24 2007Hi,
i've the following scenario:
I've a PLSQL function:
function TEST
RETURN VARCHAR2 as
begin
return 'A';
end;
I would loke to call this function from DOS Batch file, by using sqlplus.exe.
There is a method to obtain the return value into a Dos Bacth file variable?
example:
file: Example.bat
sqlplus.exe ***** TEST **** %Variable%
echo %Variable%
Thanks!!!
Emiliano