Sponsored Content
Top Forums Shell Programming and Scripting UNIX/Perl script to call informatica source counts Post 302834297 by DGPickett on Thursday 18th of July 2013 04:19:33 PM
Old 07-18-2013
Every database engine has a command line tool, but if it is not free on the host you want to use it on, you can get free JDBC jars and use xigole jisql or the like to access the data, and then a shell can examine it. Of course, you need to know the host, port, id, pw, database name, etc. to log in on any tool, and have network access, and not violate corporate standards.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how can call perl script as command?

Hello say i have written some perl scripts , now i like to call them in my unix shell as unix command like "more" , "ls" , "grep" so that my say perl script called "foo.pl" will be called from every where as "foo" or "foo arg1 arg2"? Thanks (1 Reply)
Discussion started by: umen
1 Replies

2. Shell Programming and Scripting

how to call a perl script from tcsh?

Hi I am not sure how to call a perl script from a tcsh shell. do i need to set any environment variables? your help is appreciated Thanks (1 Reply)
Discussion started by: megastar
1 Replies

3. UNIX for Dummies Questions & Answers

Call unix script through informatica mapping

hi, i want to call unix script from transformations used in informatica mapping? can we do it in any way? Please reply ASAP. We cant use Storep procedure transformation Thanks in Advance nishith (0 Replies)
Discussion started by: Nishithinfy
0 Replies

4. Shell Programming and Scripting

call shell script from perl cgi script problem

hi,, i have perl scipt with line : system('./try.sh $t $d $m'); in shell scipt try.sh i have the line: echo $1 its not printing value of $t that i hav passed..y is it so..i am running it from apache web server (2 Replies)
Discussion started by: raksha.s
2 Replies

5. Shell Programming and Scripting

Perl script that counts lines of a file

I am working on this script, but hit a bump. Looking for a little help figuring out the last part: open(MY_FILE, $ARGV) or die $COUNTER = 1; $LINE = <FILE>; while ($LINE, <FILE>) { # Adds leading zeros for numbers 1 digit long if ($COUNTER<10){ print "000"; } # Adds... (2 Replies)
Discussion started by: Breakology
2 Replies

6. Shell Programming and Scripting

how to call a bash script using perl

Hi I m new to perl. I m trying to write a perl script that calls a bash script; does anyone have a script already that they can provide or help me out? Thanks a lot. (2 Replies)
Discussion started by: adnan786
2 Replies

7. Shell Programming and Scripting

UNIX script to check file and start the informatica server

Hi Rockers, I hope u r dng good one. I have a one question is in unix with informatica . I need a unix script to check whether particular file exists in the folder , If it means we have a informatica server , so we can start the informatica server by accessing that file. Every week we have... (0 Replies)
Discussion started by: gurukrishnan
0 Replies

8. Shell Programming and Scripting

Call .profile in perl script

Hello Gurus Can anyone please let me know how to call .profle file in perl script When I am calling the .profile file its giving error Shall I create unix script which has .profile command and call perl script internally (2 Replies)
Discussion started by: Pratik4891
2 Replies

9. Shell Programming and Scripting

Call a Perl script within a bash script and store the ouput in a .txt file

I'm attempting to write a bash script that will create a network between virtual machines. It accepts three arguments: an RSpec that describes the network topology, and two list of machines (servers and clients). I have a (working) Perl script that I want to call. This Perl script takes an RSpec... (6 Replies)
Discussion started by: mecaka
6 Replies

10. Shell Programming and Scripting

Using Isql for SQL SERVER to get the table rows counts in UNIX shell script to

need to create shell script to read the table's name from file and connect SQL SERVER using isql (odbcunix) i 'm able connect to database with below command line syntex but i could not get working in shell script with SQL and storing the row count in variable. isql -v DSN USERNAME PASSWD ... (6 Replies)
Discussion started by: pimmit22043
6 Replies
XtAppAddInput(3Xt)						     MIT X11R4							XtAppAddInput(3Xt)

Name
       XtAppAddInput, XtRemoveInput - register and remove an input source

Syntax
       XtInputId XtAppAddInput(app_context, source, condition, proc, client_data)
	  XtAppContext app_context;
	  int source;
	  XtPointer condition;
	  XtInputCallbackProc proc;
	  XtPointer client_data;

       void XtRemoveInput(id)
	  XtInputId id;

Arguments
       app_context
		 Specifies the application context that identifies the application.

       client_data
		 Specifies the argument that is to be passed to the specified procedure when input is available.

       condition Specifies the mask that indicates a read, write, or exception condition or some operating system dependent condition.

       id	 Specifies the ID returned from the corresponding call.

       proc	 Specifies the procedure that is to be called when input is available.

       source	 Specifies the source file descriptor on a UNIX-based system or other operating system dependent device specification.

Description
       The function registers with the Intrinsics read routine a new source of events, which is usually file input but can also be file output.
       Note that file should be loosely interpreted to mean any sink or source of data.  also specifies the conditions under which the source can
       generate events.  When input is pending on this source, the callback procedure is called.

       The legal values for the condition argument are operating-system dependent.  On a UNIX-based system, the condition is some union of and The
       function causes the Intrinsics read routine to stop watching for input from the input source.

See Also
       XtAppAddTimeOut(3Xt)
       X Window System Toolkit: The Complete Programmer's Guide and Specification, Paul J. Asente and Ralph Swick
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

																XtAppAddInput(3Xt)
All times are GMT -4. The time now is 02:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy