Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Calling stored procedure from unix Post 302394629 by gohan3376 on Friday 12th of February 2010 05:58:01 AM
Old 02-12-2010
Code:
value="$(sqlplus -s username/password<<END
set feed off serveroutput on
exec gohan(7)
END
)"

Then i used echo $value
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. Shell Programming and Scripting

Need to call stored procedure from unix script

Hi Guys, I have a stored procedure which has 5 out parameters. I need to call the stored procedure from the script. When i use the following in my script, db2 "CALL FCFM.PART_MASTER_TMP($Return_code,$Message,$Message1,$SQL,$Load_count)" >> $LOG_FILE I am getting an error.. Please... (1 Reply)
Discussion started by: mac4rfree
1 Replies

7. Shell Programming and Scripting

how to call oracle stored procedure from unix shell

Hi i want to call a oracle stored procedure from unix (using bash shell). consider this is my oracle stored procedure with parameter create procedure testproc(name IN varchar, age IN Number, id OUT Number ) AS begin id=1; dbms_output.put.line('successfull validation') end;... (6 Replies)
Discussion started by: barani75
6 Replies

8. Shell Programming and Scripting

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... (4 Replies)
Discussion started by: homer4all
4 Replies

9. Shell Programming and Scripting

How to KIll a Stored procedure invoked by UNIX?

Hi, I am using sql server 2008 version and invoking the stored procedure using unix script. I want to know the procedure of killing the stored procedure in sql server. If I kill -9 the unix script will it also terminate the process at the SQL server. When I executed the kill -9 PID in unix... (2 Replies)
Discussion started by: Rahul Raj
2 Replies

10. 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
XIfEvent(3X11)							     MIT X11R4							    XIfEvent(3X11)

Name
       XIfEvent, XCheckIfEvent, XPeekIfEvent - check the event queue with a predicate procedure

Syntax
       XIfEvent(display, event_return, predicate, arg)
	  Display *display;
	  XEvent *event_return;
	  Bool (*predicate)();
	  char *arg;

       Bool XCheckIfEvent(display, event_return, predicate, arg)
	  Display *display;
	  XEvent *event_return;
	  Bool (*predicate)();
	  char *arg;

       XPeekIfEvent(display, event_return, predicate, arg)
	  Display *display;
	  XEvent *event_return;
	  Bool (*predicate)();
	  char *arg;

Arguments
       arg	 Specifies the user-supplied argument that will be passed to the predicate procedure.

       display	 Specifies the connection to the X server.

       event_return
		 Returns either a copy of or  the matched event's associated structure.

       predicate Specifies the procedure that is to be called to determine if the next event in the queue matches what you want.

Description
       The function completes only when the specified predicate procedure returns for an event, which indicates an event in the queue matches.
       flushes the output buffer if it blocks waiting for additional events.  removes the matching event from the queue and copies the structure
       into the client-supplied structure.

       When the predicate procedure finds a match, copies the matched event into the client-supplied structure and returns (This event is removed
       from the queue.)  If the predicate procedure finds no match, returns and the output buffer will have been flushed.  All earlier events
       stored in the queue are not discarded.

       The function returns only when the specified predicate procedure returns for an event.  After the predicate procedure finds a match, copies
       the matched event into the client-supplied structure without removing the event from the queue.	flushes the output buffer if it blocks
       waiting for additional events.

See Also
       XAnyEvent(3X11), XNextEvent(3X11), XPutBackEvent(3X11) XSendEvent(3X11)
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

																    XIfEvent(3X11)
All times are GMT -4. The time now is 05:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy