Sponsored Content
Top Forums UNIX for Advanced & Expert Users Autosys: Check the jil load time Post 302403025 by whn_chips_r_dwn on Thursday 11th of March 2010 08:28:59 AM
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.
 

9 More Discussions You Might Find Interesting

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

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

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

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

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

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

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

9. 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
KLDLOAD(8)						    BSD System Manager's Manual 						KLDLOAD(8)

NAME
kldload -- load a file into the kernel SYNOPSIS
kldload [-nqv] file ... DESCRIPTION
The kldload utility loads file.ko into the kernel using the kernel linker. Note that if multiple modules are specified then an attempt will be made to load them all, even if some fail. The .ko extension name is not mandatory when loading a given module using kldload. It does not hurt to specify it though. If a bare filename is requested it will only be loaded if it is found within the module path as defined by the sysctl kern.module_path. To load a module from the current directory it must be specified as a full or relative path. The kldload utility will warn if a module is requested as a bare filename and is present in the current directory. The following options are available: -n Do not try to load module if already loaded. -v Be more verbose. -q Silence any extraneous warnings. NOTES
The kernel security level settings may prevent a module from being loaded or unloaded by giving Operation not permitted. FILES
/boot/kernel directory containing loadable modules. Modules must have an extension of .ko. EXIT STATUS
The kldload utility exits 0 on success, and >0 if an error occurs. EXAMPLES
To load by module name: > kldload foo To load by file name within the module path: > kldload foo.ko To load by relative path: > kldload ./foo.ko To load by full path: > kldload /boot/kernel/foo.ko AUTOMATICALLY LOADING MODULES
Some modules (pf, ipfw, ipf, etc.) may be automatically loaded at boot time when the corresponding rc.conf(5) statement is used. Modules may also be auto-loaded through their addition to loader.conf(5). SEE ALSO
kldload(2), loader.conf(5), rc.conf(5), security(7), kldconfig(8), kldstat(8), kldunload(8) HISTORY
The kldload utility first appeared in FreeBSD 3.0, replacing the lkm interface. AUTHORS
Doug Rabson <dfr@FreeBSD.org> BSD
March 18, 2012 BSD
All times are GMT -4. The time now is 01:18 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy