Autosys: Check the jil load time


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Autosys: Check the jil load time
# 1  
Old 02-22-2010
Error Autosys: Check the jil load time

Hi All,
I wanted to know what time the box jobs were loaded into a particular Autosys Instance.
Is there a autosys command to find out the above? (The timestamp at which a box was loaded)

I had loaded my JIL script without outputting it to the log file.
# 2  
Old 03-03-2010
I think autosyslog command will work.
But I cant really run this command.

Throws me an error:
/usr/bin/ksh: autosyslog: not found

Any Help wud be much appreciated.
# 3  
Old 03-11-2010
You can perform a databse query

select a.job_name, b.create_user,b.create_stamp,b.modify_user, b.modify_stamp from job a, job2 b where a.joid=b.joid

which will list you all the jobs and the owner who created and at what time and also who modified it and at what time

if you want to get creation time of a specific job then use this:

select a.job_name, b.create_user,b.create_stamp,b.modify_user, b.modify_stamp from job a, job2 b where a.joid=b.joid and a.job_name = <job_name>

If the box is deleted and re-inserted then it will have the re0insertion date and time.
# 4  
Old 03-16-2010
Thanks whn_chips_r_dwn.
But, Here, I dont think we have any DB processing after the job is loaded.
Is this automatically done after the jil load is done?
Do i need to have any superuser rights to run this kinda query?
Thanks again.
# 5  
Old 03-17-2010
Just a question to trickle your mind..

If databse is not there, then where autosys stores all information??? Think

when you jil in the job then it goes into the database and the logged on service/user id is stored in the database. You can find on the google about the Autosys infrastructure.

You need to have atleast readonly access on the database or you can contact the DBA's to retireve the result of the given query.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Autosys adding global variable in a jil

I have created two jil files name AY.jil and PY.jil. I have three issues which are as follows: 1. how do you add a global variable value from a shell script program to a jil file? 2. PY.jil needs to check every five minutes on the completion of the AY.jil jobs and AY.jil needs to... (1 Reply)
Discussion started by: dellanicholson
1 Replies

2. UNIX for Beginners Questions & Answers

Add global variable to jil autosys

I am new to autosys. I want to add a global variable to a jil file named PJ.jil. I also want to add a watch_file command to filename PJ.jil and AY.jil. The watch_file command checks every five minutes if the jobs have completed. For example. AY.jil needs to wait until all the jobs in PJ.jil have... (0 Replies)
Discussion started by: dellanicholson
0 Replies

3. Shell Programming and Scripting

How to check if Autosys is installed?

How can I check if "Autosys" is installed on my Linux and Solaris servers ? I prefer Autosys instead of Crontab. (4 Replies)
Discussion started by: mohtashims
4 Replies

4. UNIX for Advanced & Expert Users

Load balancing in Autosys

Hi, I am working on development project where I have to migrate many jobs from Tidal to Autosys R11. During this project we came across the following requirements. 1. There are 3 real machines. There could be many jobs activated simultaneously, but only one job should execute at a time and... (0 Replies)
Discussion started by: sujeetp
0 Replies

5. Shell Programming and Scripting

awk - Parsing Autosys JIL

I'm trying to modify the script given in post 7 of the following thread: 146564-need-parse-jil-file-into-excel-file.html. (Sorry, can't post the URL as I don't have enough posts.) The original script is as follows: awk -F ' *_]*: *' 'BEGIN ... (9 Replies)
Discussion started by: GnuScripter
9 Replies

6. UNIX for Dummies Questions & Answers

Autosys: How to change a machine name in Autosys JIL.

All the autosys jobs are on server-1 and server-1 has been crashed due to some reason, Now I have to run 5 autosys jobs on server-2 (failover server) which are on server 1. How to do with Autosys command (which command needs to fired on JIL) (0 Replies)
Discussion started by: tp2115
0 Replies

7. Fedora

how to check if autosys or control-M is running?

Hi, On a unix/linux server, how do I check if Autosys or Control-M (scheduler) is running? are there unique processes for these applications that I could do ps -ef | grep ??? thanks, Jason (11 Replies)
Discussion started by: seafan
11 Replies

8. Shell Programming and Scripting

Autosys Job Creation Time

Hi Can anyone tell me how to check the autosys job creation time. i mean how to check when a particular job is created. Thanks in Advance. (3 Replies)
Discussion started by: diehard
3 Replies

9. UNIX for Advanced & Expert Users

Autosys JIL script for logging

Hi I'm very new to this Autosys JIL scripts. Now I need to create an Command to copy the file from one folder to another by watching that folder. I have written & create that job but i don't no how to add logging in JIL script. Before moving the file i have to log the file details in a separte... (0 Replies)
Discussion started by: vijayvz
0 Replies
Login or Register to Ask a Question