I have a stored procedure in oracle i want to call that procedure from cygwin. This is the procedure
CREATE OR REPLACE PROCEDURE greetings
AS
BEGIN
dbms_output.put_line('Hello World!');
END;
i am doing this
sqlplus -s system@orcl/oracle10g<<END
execute greetings();
commit;
exit;
END