Hello, I would like to know, how can I execute Oracle Store Procedure with OUTPUT variable in SAS GUIDE. In Sql Developer I can execute like you can see below and it works. Oracle Code: VAR OUTPUT1 NUMBER; VAR OUTPUT2 NUMBER; EXECUTE StoredProcedure(99, :OUTPUT1, :OUTPUT2); When I declare VAR OUTPUT NUMBER in PROC SQL it doesn't work. Could you please help me with an alternative way to execute this? Thank you. Higor Carvalho.
... View more