Questions tagged [autosys]

CA Workload Automation AE (AutoSys Edition), known simply as AutoSys is a job scheduling and workload automation tool made by CA Technologies. Current version is R11.5. Unless you are asking a programming question about integration with the AutoSys SDK, your question is likely off-topic. Questions about the use of server management software should be directed to Server Fault.

AutoSys is job control software by CA Technologies for the scheduling and monitoring of tasks. Tasks can be defined in a GUI or a Job Information Language (JIL) file. An AutoSys SDK has been provided in recent versions for third-party Java and C++ software to interface with the system.

385 questions
1
vote
1 answer

Having issue with file appended with date in JIL script

I have a file watcher job, which is expecting to receive daily file with date appended. insert_job: FILE_WATCHER job_type: FW box_name: abc_BOX machine: abc.com owner: dev permission: mx,me date_conditions: 0 job_terminator: 1 …
dildeepak
  • 1,349
  • 2
  • 16
  • 34
1
vote
0 answers

Autosys job to change the status to success

Hi all i tried this code D:\Apps\tools\autorep\ixpautorep.exe -M sendevent -J jobname -E CHANGE_STATUS -s SUCCESS But it shows status of event is missing and ignores success Please help
user3726122
  • 11
  • 1
  • 2
1
vote
2 answers

Scheduling Autorep command to run daily

I am a newbie to autosys. I am trying to get the jobs execution information on daily basis into a csv file. For this I am trying to write an autosys job which I can schedule to run daily. Below is the snippet of the code: insert_job: job_run_time …
Shanky
  • 11
  • 1
1
vote
1 answer

How to get only status of Sutosys job like SU, RU etc

I want only job status value like RU,SU,OH etc to collect that in a variable, i am trying below command autorep -J jobname -d -L0 but it giving me whole result including all other column like Job Name,Last Start,Last End,ST/Ex,Run/Ntry Pri/Xit I…
Pavan
  • 11
  • 3
1
vote
0 answers

HUE and Job Scheduler installation for HDFS

I have two separate question regarding the installation of following: 1) I want to install HUE. But the issue here is that I have to hop between servers to access my production node. e.g Login to server A in putty --> ssh into server B --> ssh into…
Atul Patil
  • 137
  • 2
  • 10
1
vote
0 answers

Remote execution of powershell script with autosys - to interact with IE _ComObject

I have a Powershell script designed to automate the testing of some URLs. The script invokes an Internet Explorer session as such: $IEProcess = Start-Process -FilePAth 'C:\Program Files (x86)\Internet Explorer\iexplore.exe' -ArgumentList "-private…
1
vote
1 answer

how to determine how much time autosys job takes to go to "success" state

Can anyone help me, I am trying to find the current status of an autosys job like below: autorep -j jobname -d -L0 | grep "RUNNING" and if it is not running, I have to force start the same job. After the same job is successfully restarted, I have…
1
vote
1 answer

Autosys Job: machine name parametrization

I am creating a Autosys Job as follows: /* ----------------- GLB_1045_AMDGC_IntegrationAMDH_DEV ----------------- */ insert_job: GLB_1045_AMDGC_Integration_DEV job_type: CMD command:…
1
vote
2 answers

Autosys Can a job run multiple instance at the same time

I am trying to understand autosys job. Suppose I have Job A that runs every 15 minutes. Suppose for some reason if Job A takes more than 15 minutes, will another instance of it run or it will wait for the job to finish before running another…
jenkins342
  • 19
  • 2
1
vote
2 answers

Autosys Job setup with both Day and Predecessor conditions

Predecessor job(JOB_A) running M-F JOB_B is set up to run M-TH after JOB_A completion We have job(JOB_C) that needs to run only on FRIDAY's after JOB_A completion. Because of FRIDAY only we have to use DATE condition with DAY and TIME. JOB_C is…
1
vote
1 answer

How to specify two dates in Autosys jil let’s say it has to run on two calendar dates 15th and 30th of each month?

I specified like below run_calendar : 15CD & 30CD Getting an error saying invalid keyword? Tried many combinations “15CD” & “30CD” also 15CD,30CD still sane error.
1
vote
1 answer

Run autosys batch job and check its status in java

I have a requirement to run an autosys batch job and then check for its status till its status changes to SU. I have written the following code, but it gives me the following exception: CreateProcess error=2, The system cannot find the file…
Abhisek Mishra
  • 269
  • 3
  • 15
1
vote
0 answers

Autosys writes to the .err file on a successful job

I loaded a find command into autosys. It zips anythin older than 15 days old. The script only has two lines. #!/bin/bash find /casper/dir/usa.* -type f -mtime +15 -exec gzip --verbose {} \; Problem is that is finished successfully immediately,…
capser
  • 2,442
  • 5
  • 42
  • 74
1
vote
2 answers

preventing autosys job to run on certain timing of the certain day

I have a job which runs everyday 4 times in an hour (total 48 times). I want to prevent it from running only between 7 AM to 9 AM Sunday. How can I achieve it without creating two different jobs. I want to accomplish it in a single job. Please help.
1
vote
1 answer

SQL Agent vs AutoSys

We are using SQL Server 2014, and have around 250 SQL Agent jobs. The vast majority are running SSIS packages, and SQL Agent runs on a separate server from the data. I've been asked to determine if we would gain anything by moving the scheduling…
Al__H
  • 196
  • 4
  • 16