![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| script execute or no execute | Kespinoza97 | Shell Programming and Scripting | 4 | 06-23-2007 06:27 AM |
| run shell script from oracle store procedure | arnabb4u | Shell Programming and Scripting | 8 | 08-16-2006 09:16 AM |
| Need to execute 2 scripts, wait, execute 2 more wait, till end of file | halo98 | Shell Programming and Scripting | 1 | 08-01-2006 01:42 PM |
| Back-up Procedure | daemons_advoc8 | SUN Solaris | 1 | 02-08-2006 07:24 AM |
| Execute an Oracle stored procedure from a shell scrip | mh53j_fe | Shell Programming and Scripting | 1 | 06-03-2005 12:17 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
execute store procedure
Hi, can someone point out the tutorial or syntax for how to execute store procedure through shell scripting .
thanks. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Quote:
|
|
#3
|
|||
|
|||
|
Yes
can help .
|
|
#4
|
|||
|
|||
|
Quote:
Elaborate your requirement.. |
|
#5
|
|||
|
|||
|
wondering
Below is my script. I calling PS/SQL named:dummy_select. I dun know what's wrong of it...Getting error : wrong argument type.
function checkFileStatus { sqlplus -S $USER/$PASS@$DB << EOF exec dummy_select('$1'); commit; quit; EOF } -----dummy PS/SQL-- CREATE OR REPLACE PROCEDURE dummy_select( v_file_name VARCHAR2, dummy_select_cv IN OUT Cv_Types.customer_tp) IS BEGIN OPEN dummy_select_cv FOR SELECT sysdate FROM dual; END; / |
|
#6
|
|||
|
|||
|
shell variables wont work inside the DB.
if am i right. |
|
#7
|
|||
|
|||
|
Quote:
|
|||
| Google The UNIX and Linux Forums |