Thanks Dhookom... I write pass-throughs all the time, however, I want to execute a stored procedure the same way. In oracle, I would call it in a package, or another store procedure. My procedure is called sp_TEST, and the language to call it would be:
begin
sp_TEST;
END;
However, if this is in a pass-through query, the query fails. I'd like the user to be able to run the sp as they don't have access to my Oracle tools.
I live to work and I work to live.