Utilities Blog by JuCa Cruz
If it happened to me before, maybe what I've posted here will help you.
Friday, February 4, 2011
Run a SQLPlus script and pass a parameter as input
Simple:
call sqlplus user/password@database @your_script.sql abc123 qwe890
Then your script:
begin dbms_output.put_line(&&1);
dbms_output.put_line(&&2);
end;
/
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment