Calling Oracle stored procedure from ksh script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Calling Oracle stored procedure from ksh script
# 1  
Old 08-20-2014
Calling Oracle stored procedure from ksh script

Friends,

I'm newbie with ksh so wanting some help....

1. I'm trying to call oracle stored procedure from ksh script by taking variable value from runtime, feed into script and execute procedure.
2. Put name1 and name2 value from script run replacing $3 & $4

I'm trying to put name1 in vNam1 and name2 in vNam2 in procedure.

*** Script run
Code:
script.ksh /@dblogin name1 name2

*** Ksh script
Code:
#!/bin/ksh
...
...
$ORACLE_HOME/bin/sqlplus $1 execute pkg.proc1 $3 $4

end

*** Stored procedure
Code:
Create or Replace pkg

proc1(vNam1 IN varchar2, vNam2 IN varchar2)
select name from employees
where name = 'vNam1';

...
end;
/

Thanks and appreciate your answers.
# 2  
Old 08-20-2014
Couple of questions:
1. are you using ksh shell to create or replace a procedure? This would be considered an oracle DDL statement BTW.
2. You call a procedure using pl/sql not usually straight sqlplus. Do you mean to use just sqlplus? Or pl/sql? (you can access PL/SQL via sqlplus).

Why did I ask? - most of what you show seems to me not to run without error. Did you really try any of this?
# 3  
Old 08-21-2014
Jim,

I have got package created in the database which has got couple of procedures.
I'm using ksh shell script to login into database and call that store procedure which runs some "Alter table....".

I confirm that my db login works but somehow not able to execute procedure.
Procedure excepts couple of input value which I'm trying to use $3 & $4 value from shell run. i.e. $3 here is name1 , $4 is name2
Code:
script.ksh /@dblogin name1 name2

There is no error but values from run doesn't get feeded to procedure

Last edited by homer4all; 08-21-2014 at 11:53 AM..
# 4  
Old 08-21-2014
Try something like
Code:
$ORACLE_HOME/bin/sqlplus  << EOSQL
$1
begin
pkg.proc1('$2','$3') 
end;
/
EOSQL

# 5  
Old 08-21-2014
How to close this thread??

I plan to run procedure manually after db connection.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. How to Post in the The UNIX and Linux Forums

Calling a Sybase Stored procedure from a UNIX Script

Hi, I am new to shell scripting and Sybase database i need a help that i try to execute a SYBASE stored procedure from a Unix shell script and wanna write the output of the SP into a Text File.somehow i try to find a solution but whwn i try to run the script i am not getting the output file with... (1 Reply)
Discussion started by: Arun619
1 Replies

2. Shell Programming and Scripting

ksh and Oracle stored procedure output in logfile

Friends, I pass some runtime arguments (date, number) through ksh script to Oracle procedure, use input value and pass it on to procedure. Oracle procedure gets input value, run query and logs everything in the logfile. I'm facing with couple of challenges 1. Even though I pass all... (5 Replies)
Discussion started by: homer4all
5 Replies

3. Shell Programming and Scripting

Call and redirect output of Oracle stored procedure from unix script

Hi, Can you assist me in how to redirect the output of oracle stored procedure from unix script? Something similar to what i did for sybase isql -U$MYDBLOG -D$MYDBNAME -S$MYDBSVR -P$MYDBPWD -o$MYFILE<< %% proc_my_test 8 go %% Thanks in advance - jak (0 Replies)
Discussion started by: jakSun8
0 Replies

4. UNIX for Dummies Questions & Answers

Calling stored procedure from unix

Hi, My stored procedure returns a value. How to retrieve the value and display in unix. Stored procedure CREATE OR REPLACE PROCEDURE gohan(num INT) IS BEGIN DBMS_OUTPUT.PUT_LINE('My lucky number is ' || num); END; Unix Scripting i used sqlplus -s... (7 Replies)
Discussion started by: gohan3376
7 Replies

5. Shell Programming and Scripting

Invoking Oracle stored procedure in unix shell script

Here's a shell script snippet..... cd $ORACLE_HOME/bin Retval=`sqlplus -s <<eof $TPDB_USER/april@$TPD_DBCONN whenever SQLERROR exit 2 rollback whenever OSERROR exit 3 rollback set serveroutput on set pages 999 var status_desc char(200) var status_code... (1 Reply)
Discussion started by: hidnana
1 Replies

6. Shell Programming and Scripting

calling a PL/SQL stored procedure from KSH

Hi I have a stored procedure which should be called from KSH. Could ayone please help me with this. Thanks (1 Reply)
Discussion started by: BlAhEr
1 Replies

7. Shell Programming and Scripting

Calling an Oracle Stored Procedure from Unix shell script

hai, can anybody say how to call or to execute an oracle stored procedure in oracle from unix... thanks in advance.... for ur reply.... by, leo (2 Replies)
Discussion started by: Leojhose
2 Replies

8. Shell Programming and Scripting

Calling stored procedure from shell script

HI, I have a similar problem to thread 18264, only I couldn't get it to work. https://www.unix.com/showthread.php?t=18264 I have a stored procedure which is called by a shell script program. When I run the stored procedure alone or through the shell script, it works fine with output text... (3 Replies)
Discussion started by: dorisw
3 Replies

9. Shell Programming and Scripting

Calling MYSQL Stored Procedure?

Hi, Can anyone help me with the correct syntax to call a MYSQL stored procedure from a shell script. I have tried the following, (no input params): /usr/bin/mysql -uadmin -ppassword call TL_CLENSEDATA(); resulting in error: /home/hosting/data/scripts/dbclense.sh: line 12: syntax error... (3 Replies)
Discussion started by: kshelluser
3 Replies

10. Shell Programming and Scripting

calling stored procedure from shell script.

Hi All, This is a very starnge problem I am having. I have a shell script that calls a stored procedure. Here's my code in shell script: sqlplus "userid/pwd" @file.sql and file.sql has the following statement: exec my_storedProc; Now, when I execute my shell script, nothing... (2 Replies)
Discussion started by: priyamurthy2005
2 Replies
Login or Register to Ask a Question