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

How can i call my autosys job from file watcher job

I want to create a file watcher which will call my autosys job once matched file will available at given location.
1
vote
0 answers

Autosys job not getting triggered every 15 minutes

I have defined the autosys box as below : description="Trigger Hive refresh jobs" date.conditions=date_conditions: 1 days.of.week=days_of_week: all start.mins=start_mins:0,15,30,45 run.window=run_window:"02:00-23:59" and the box's container has…
John Humanyun
  • 915
  • 3
  • 10
  • 25
1
vote
1 answer

Autosys job failing with exit code 127

I have a autosys job with the below command cd /homes/epsi95/sanity_check/build-config && ./run.sh postcheck_definition.json Description: There is a run.sh file inside /homes/epsi95/sanity_check/build-config, I cding into that folder and running…
Epsi95
  • 8,832
  • 1
  • 16
  • 34
1
vote
1 answer

Scheduling job to start 9.00 am and then every 15 minutes in autosys

I'm new to autosys. I wanted to plan a work that starts at 9.00 and runs every 15 minutes. Is this the proper syntax? start.times=start_times: "09:00" start_mins:00,15,30,45
John Humanyun
  • 915
  • 3
  • 10
  • 25
1
vote
1 answer

Autosys job shows success but failed

I've some weird situation. My autosys job status shows that it ran successfully but when I checked the logs it showed it was failed. Is that possible ? Has anyone encountered this kind of issue ?
Tim
  • 69
  • 7
1
vote
1 answer

How to schedule AutoSys job to run between 1:00 AM EST till 1:30 AM EST

I have scenario where i want to create a Autosys scheduling job. which should run from Monday till Friday only that too between time 1:00 AM EST till 1:30 AM EST Should check every 10 minutes from 1:00 till 1:30 AM EST only I tried this : run_window…
codeholic24
  • 955
  • 4
  • 22
1
vote
1 answer

error while running python script using AutoSys

I am running a python script using AutoSys but it is giving error. The problem lies in the version of python, Instead of calling python 3.8 auto sys is calling python 2.7 How can I change the path of python in autosys?
1
vote
0 answers

Dynamic SSIS package creation not working

We are creating SSIS package dynamically using Microsoft.SqlServer.Dts.RuntimeMSDN Link. For the tables to load, we are dynamically create package and execute them. It was working fine till SQL 2014. But, Once we deployed the packages to SQL Server…
Venkataraman R
  • 12,181
  • 2
  • 31
  • 58
1
vote
1 answer

How to make my currently running Autosys Job to FA [Failure] , when command script fails

I have a script which is in Autosys Job : JOB_ABC_S1 command : /ABC/script.sh Scrpt.sh code grep -w "ABC" /d/file1.txt status=$? if [ $status -eq 0 ] then echo "Passed" else echo "Failed" exit 1 fi My issue is even if the script…
codeholic24
  • 955
  • 4
  • 22
1
vote
1 answer

Autosys file watcher job, Trigger on file arrival , file comes monthly

I am a .net C# developer and having limited knowledge in autosys script. We have a monthly file feed(csv).. Comes once in a month .. sometimes twice in a month. My requirement is to run a job which will monitor this file and move to a different…
Rahul Chowdhury
  • 1,138
  • 6
  • 29
  • 52
1
vote
1 answer

How to check whether a file is present or not using file watcher jobs in Autosys

There is arequirement which we need to fulfill using file watchers. I was wondering whether we can use file watchers to detect file successfully if the file is present before the file watcher job is started.
1
vote
1 answer

Autosys JIL for removing start time of job

I have a job in autosys and I need to update it to remove the starting time completely. Currently the start time is set to run at 10pm every night. update_job: myjobname start_times: Do I leave the start_times blank as above or do I change it to…
xrrt78
  • 51
  • 2
  • 9
1
vote
2 answers

write to output stream and returning value from shell script function

In shell script, echo can be used to return values from functions. But, if those functions want to print some messages. Then, this can be done by redirecting it to error stream. Below is a simplified example :- #this is a function that returns a…
mogli
  • 1,549
  • 4
  • 29
  • 57
1
vote
1 answer

Can I create One Box Job inside another box job in Autosys by JIL

I want to write a JIL file in which I want One major box then inside this box job another box job and then I want to write a command Job. I haven't been able to find the syntax and also Is it possible to write one box job inside another box job or…
Deepak.Pal
  • 35
  • 5
  • 13
1
vote
1 answer

Put an autosys job ON_ICE automatically depending on a calendar

I am working with a path of jobs on autosys that runs every night. One of these jobs needs to run only on certain dates at the beginning of each month (usually the first 4 days but it can change depending on the business) so currently I'm putting…
NessaC
  • 49
  • 6