Questions tagged [job-scheduling]

A job scheduler is a computer application for controlling unattended background program execution (commonly called batch processing).

Today's job schedulers, often termed workload automation, typically provide a graphical user interface and a single point of control for definition and monitoring of background executions in a distributed network of computers. Increasingly, job schedulers are required to orchestrate the integration of real-time business activities with traditional background IT processing across different operating system platforms and business application environments.

1328 questions
-2
votes
1 answer

Why SQL Job Scheduling is not moving all the records some time?

I set the job schedule on daily basis. When I check the records on the next day, the records were not moved completely on someday. I don't know why. Here is my query INSERT INTO [HQWebMatajer].[dbo].[F_ItemDailySalesParent] ( [ItemID] ,[StoreID] …
Liam neesan
  • 2,282
  • 6
  • 33
  • 72
-2
votes
1 answer

is there any software that let me schedule SNMPWALK on device on specific intervals?

I need to know if there is any program that let me schedule SNMP monitoring based on MIB files on spesific period of times without user intervention. also I need to be able to recieve traps from the device. the monitored device is already configured…
Shay
  • 45
  • 6
-2
votes
1 answer

Oracle job starts automatically

I created job in Oracle. I set interval properly. But the job started automatically after I created it . DECLARE X NUMBER; BEGIN SYS.DBMS_JOB.SUBMIT ( job => X ,what => 'MISSING_REVENUE_EXPENSE_ICR;' …
-3
votes
1 answer

Can any one tell cron expression value(ex: 0/15 * * * *) for scheduling job in pcf?

I want to run the job every 3hr 30min(Ex:1:00pm next 4:30pm next 8:00pm next 11.30pm so on...)
-3
votes
1 answer

To find which machine the nth job will run on in the n job, m machine job scheduling

There are n jobs to be scheduled on m machines, with each machine taking a different time t_i for a job. The machines are ordered, with priority given to 1st machine if free and so on. I have to code in C++ an algorithm to efficiently calculate the…
-4
votes
1 answer

How to schedule a task and maintain log history in jsp?

Schedule to Run batch file and maintain execution history in logs and save into database using jsp/servlet. please help me.
-4
votes
2 answers

How to run a C# script periodically?

Is it possible to run some C# script under Windows periodically? I mean something like a SQL job etc. I know the solution via SSIS but it's not exactly what I am looking for.
Petr
  • 1,193
  • 1
  • 15
  • 27
-5
votes
5 answers

Run a command based program at a custom date-time (Add/modify/delete)

I have a python script which takes few params as argument and I need to run tasks based on this script at a given date and time with other params. I am making an UI to add/modify/delete such tasks with all given params. How do I do it? Is there any…
sns
  • 221
  • 4
  • 17
1 2 3
88
89