scheduler

In Oracle performance monitoring why does Scheduler activity goes up

What does scheduler mean in Oracle? Is it connection scheduling or query scheduling or the query plan execution scheduling or something else? ...

Simple example of batch file and windows scheduler

I need to create a batch file which will copy web log files from a web server to a local desktop box on daily frequency. I'm a web developer, but I'd like to take a stab at learning the process for creating a batch file and I think using the windows scheduler should get me where I need to go. In any case, I'm just looking for a jumping...

Python sched.scheduler exceeds max recursion depth

Hello, I have recently started learning Python and part of the simple app I am making includes a timer with a hh:mm:ss display running in its own thread. Looking around the web I found two ways of implementing this: Using sched.scheduler Using threading.Timer The way I did it looks similar for both implementations: sched: def tic...

AutoSys scheduler update JIL

We use AutoSys for job scheduling, and I find myself writing a lot of JIL (job instruction language) scripts to delete boxes and re-insert them due to small job changes (e.g. start time, etc.). Is there an update command that can be used? CA's AutoSys cheat sheet has no information on one. ...

.NET Function to determine first, last day, etc.

Does anyone know of a good piece of C# code or assembly that supports the following: Find the 1st Tuesday of June 2012 Find the last Friday of March 2008 Find every Saturday in January 2013 Find the 3rd Friday in July 2009 Find every Saturday over the next 3 months Find every day in March 2018 The results should come back as...

Best enterprise scheduler that you worked with?

I am looking for a good scheduler that is robust across multiple platforms (windows, linux, solaris, etc) that has robust error reporting capabilities. ...

scheduler like google calendar in MVC

I am trying to integrate a calendar plugin like google calendar with custom database and code with asp.net MVC in C#. It needs to handle Day/Week/Month Events in the Calendar as like google calendar. I found the similar plugin in jquery http://www.webappers.com/2009/08/04/jquery-weekly-calendar-plugin-inspired-by-google-calendar/. But...

C# task scheduler query

Hi I have developed a scheduler sometime back for an ASP.Net site using cache expiration callbacks. I have the budget now to move the site to a dedicated server so I have written the scheduler as a windows service using a timer object - its working well in test envirinment. I want to know if the timer approach is good enough for this. I...

How does the Process Scheduler in iPhone OS really work internally?

I want to know this more in detail. Is it a realtime scheduler? An interactive scheduler? How exactly does the process scheduler in iPhone OS work? Did Apple publish some technical notes or document that describes these things in deep detail? I want to know every detail about it. What strategy is it following? First-Come First-Served? S...

Quartz cron expression for cron triggers executed every Nth Hour/Day/Week/Month

Hi Guys, I am developing an application that gives user ability to schedule some activity. Inputs that are provided by user are Value of N Option amongst Hour/Day/Week/Month Start Date Start Time I am unable to get the corn expressions right for each of the repeat interval type i.e. Hour/Day/Week/Month so that the trigger time is ca...

Scheduler WinForms Control similar to uTorrent scheduler

I am building a WinForms application and I need a control that allows a user to select blocks of time on certain weekdays when particular services are enabled/disabled. The desire User Interface is for a component much like the Scheduler in uTorrent shown here. This control has a grid of colored boxes. The days of the week are along th...

can moving many sprites using scheduler in one scene slow down simulator

I am developing a game in which i have 10-12 sprite moving at a time in one scene can that slow down the simulator? in my game if i click on sprite moving at top i.e. plane from which humans jump down. so if one click continuously 6 or 7 times at time 6 or 7 sprites appear and it slow down. i have not tested on iphone but its slow down's...

Linux group scheduling for user not being applied to setuid-ed process

On the 2.6.28-11 Linux kernel, I am using setpriority to bias the amount of cpu time different user processes receive. User 1 is to receive double the CPU power of user 2. Using Linux's setpriority, I have assigned user 2 a lower priority (higher in terms of nice values). When I run the exact same program via the shell with the computer ...

"Lights Out" Automated Scheduled Batch Creation of Excel Workbook?

Anybody have a good approach to automate the batch creation of custom-formatted Excel workbooks at a regularly scheduled time or after an event occurs (e.g., file created, table loaded)? To make things even more interesting, let's further assume that the source data is in a relational database or Unix file, and the results need to be e...

Server Side Calendar Control in asp.net using the ical event format

Hi, Does anyone know of a Calendar scheduler control that would display a whole month of events including the title of the event in each day? I need it to use an ical data format that would come from a restful web service request. I would like the control to output plain html with no javascript as it has to work on public sector websit...

Windows Scheduler OR SQL Server Job for sending out digest e-mails

Will be sending out e-mails from an application on a scheduled basis. I have an EmailController in my ASP.NET MVC application with action methods, one for each kind of notification/e-mail, that will need to be called at different times during the week. Question: Is Windows Scheduler (running on a Server 2008 box) any better or worse...

Is it possible to run a cron job in a web application?

In a java web application (servlets/spring mvc), using tomcat, is it possible to run a cron job type service? e.g. every 15 minutes, purge the log database. Can you do this in a way that is container independent, or it has to be run using tomcat or some other container? Please specify if the method is guaranteed to run at a specific t...

Import Quart DLL in C# VIsual Studio

I'm in need for the Quartz DLL , I've downloaded all the source and everything and there is the Quartz.dll and Common.Logging.dll files, but I don't know how to use them in my own applications. Can someone tell me how to do this, it's just this one step that's stopping me from doing it all. Thanks ...

Employee shift scheduling component for ASP.NET

I'm looking for a control I can use in an ASP.NET app for scheduling work shifts. My primary requirement is to have locations on a y-axis, dates on the x-axis, and then at each intersection, have a block divided into shifts, and each shift containing a short (1-3) list of employees working that shift. Any suggestions for components tha...

How to implement a job scheduler

Hi, i would like to implement a job scheduler(from scratch as it is for university purpose) I want to run certain methods at intervals. the intervals may vary Do you have any suggestion? I really do not know where to start. Thanks ...