I want to execute a SQL*Plus script which ask for parameters and updates an Oracle table from Portal. Any suggestions on how to do this?
Thanks
Bonita Graupe
I would suggest creating a stored procedure/package that would accept your parameters. You can create a portal form based on a procedure or you can use the portal PDK.
Last Wiki Answer Submitted: June 7, 2006 6:48 am by NickatMFG0 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
Not sure what you mean “from Portal”, however, it seems you should use substition and/or bind variables, prompt and/or accept. Not sure this will work but something like
Not sure what you mean “from Portal”, however, it seems you should use substition and/or bind variables, prompt and/or accept. Not sure this will work but something like
define x varchar(10)
accept “Enter value: ” into &x
update tab1 set col1 = &x;
good luck.