Skip to Main Content

Call another script inside PL/SQL using a variable from a parameter

3756264Aug 7 2018 — edited Aug 16 2018

I am trying to call a variable script name. I need it as a variable so that i can replace it with a parameter. This code below somehow dose not work.

DECLARE

mypath CHAR(30);

BEGIN

mypath := '&1';

@mypath

END;

Any help please!

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked due to inactivity on Sep 13 2018
Added on Aug 7 2018
10 comments
505 views