I am new to Oracle and sql navigator. I can't seem to find a way to execute a stored proc and see its results. The proc is created as follows. How do I execute this proc in sql navigator. I am using sql navigator 6.7. Also, please be advised that the proc is using out ref-cursor.
PROCEDURE getdata
( p_id IN VARCHAR2,
p_date IN DATE,
p_out OUT ref_cursor)
IS
BEGIN
OPEN p_out FOR
SELECT *
FROM OPS_ARW.logs
WHERE member_id = p_id
AND date>p_date;
END;
PS: I am pretty sure this is a duplicate. Would appreciate if you can only redirect me to the correct place as I can't find it.