I want to execute this below stored procedure in Excel without VBA/macro code and get output. Any idea how to get this?
create or replace
PROCEDURE TEST2 (P_OUTCUR OUT SYS_REFCURSOR)
IS
V_ABALPH VARCHAR2(30):= 'TRYS';
BEGIN
OPEN P_OUTCUR FOR
SELECT * FROM PRODDTA.F0101 where abalph like '%' || V_ABALPH || '%';
commit;
end;
Output of stored procedure should display in Excel sheet.
Here are the steps to get output in excel from SQL server.
In this similar way can I do for Oracle?