scheduled-tasks

Is there any way to automatically run PHP script on Hosting web server withour cron??

I had a script which sends sms alerts everyday. I want it to send automatically send sms by fetching message from database. Can I do it without cron. Is there any other solution. Plz help ...

PHP and scheduled tasks

I'm trying to come up with a list of different approaches to run scheduled tasks on PHP. My intention is to provide an universal way to run scheduled tasks in PHP. So far I have: 1) Analyze site traffic. If you receive 770 hits a day (which is one hit per 2 minutes), and you scheduled a task to run at 6:00 AM and a visitor requested a p...

Creating a long running, nightly task in .NET 3.5 for use on Windows Server 2008

I have a long running, compute and disk intensive task that needs to run nightly on Window Server 2008; my Framework of choice is .NET 3.5 sp1. There's a chance this task could fail too for any number of reasons (i.e. lack of disk space) and I'd like to make sure errors are handled & reported reasonably. Also, this task would require p...

Scheduled task error

I am getting error in scheduled task :"http://localhost:4625/DataUpdater.aspx.Error Message:Object reference not set to an instance of an object." Scheduledtask vbs script : Call LogEntry() Sub LogEntry() On Error Resume Next Dim objRequest Dim URL Set objRequest = CreateObject("Microsoft.XMLHTTP") URL = "...

Erlang Documentation/SMP: single-node and multi-node per machine or per application, and the confusion that may follow.

I'm studying Erlang's process model at the moment. I have hit a snag in a tech report (section 3, paragraph 2) on Erlang: This explains why it in some cases can be more efficient to run several SMP VM's with one scheduler each instead on one SMP VM with several schedulers. Of course the running of several VM's require that the ap...

SQL repeat events by timer

I want that a column of my database, composed by float random numbers, change every x seconds determined by a timer. I read about Schedule Tasks Events but i can't work it. Please help ...

Quartz Java resuming a job excecutes it many times.

For my application i create jobs and schedule them with CronTriggers. Each job has only one trigger and both the job name and the trigger names are the same. No jobs share a trigger. Now when i create a cron trigger like this "0/1 * * * * ?" which instructs the job to execute every second, it works just fine. The problem rises when i f...

Writing to the history of a SQL Agent Job

Having just created a SQL Agent Job I thought it would be handy to be able to write a little bit of information into the job's history, in case I wanted to check it later. I was using VBScript in this instance, and noted that I could use the Error object to record info in the history, for example: Err.Raise 999, "The code died" If yo...

How large can an appengine task payload be?

I'm using the new experimental taskqueue for java appengine and I'm trying to create tasks that aggregate statistics in my datastore. I'm trying to count the number of UNIQUE values within all the entitities (of a certain type) in my datastore. More concretely, say entity of type X has a field A. I want to count the NUMBER of unique valu...

How to setup cron job?

Hi, I have a windows shared hosting account with Godaddy.com with PHP5 that does not allow cron or scheduled job. I am developing a website in PHP5 with CakePHP and I need to run a cron job to send emails. What will be the best way to do it? Thanks for your answers in advance. :) ...

WCF and tasks with threading

Hi, I am wanting to write some web services using WCF. I would like to have a "thread pool" in my web service. For example, I have nearly 6gb of data I need to manipulate. I would like the client to call an operation on the webservice and have a new task or thread created. The client is able to call a ListRunningTasks(); and have the ...

Schedule setup string without using CRON string

Currently we are using cron strings for setting Quartz jobs in our project. But it seems to be either overkill or little confusing to set by a admin guy who is not a developer. So, we try to use a simple string like this, each 1 seconds on MonTueWedThuFri between 00:01 and 23:59 Is there any existing frameworks (or in Quartz) I will b...

Can't add Schedule task in Win XP, limited user.

Hi all, I've build a program in c# windows forms, now on the first load up it trys to create a scheduled tasks. if it raises exception and it's main computer then this is the first time the softwere loads(you can intall this program on many computer but one computer is the main with the scheduled tasks). i've try this program on many c...

windows scheduler alternative for an asp.net webform application which is shared hosting

Hai guys, Is there any alternative for windows scheduler for an asp.net application... The alernative must be capable of doing scheduled tasks as i am into shared hosting where i cant add any task scheduler to my server... I know there is quartz.net but my application needs only one task to be scheduled daily so i dont want to use it....

Set cronjob/scheduled task in windows server 2003? Php & Mysql

I would like to set a scheduled task/cron job to update database. I planning updating the database using a php script, i.e connect to database and execute SELECT and UPDATE query. I already prepared the php script, and what should I do next? I am (my server) is using Windows Server 2003, IIS, php and mysql. When I google this, I got t...

Recommended method for loading a URL via a scheduled task on Windows

I have a webpage hosted on a Windows box that I need to assure gets loaded at least once/day. My current plan is to create a scheduled task that opens Internet Explorer and hits the URL: "C:\Program Files\Internet Explorer\iexplore.exe" myurl.com/script_to_run_daily.aspx This was simple to setup and works fine, but it strikes me as a ...

How can I schedule a Task to execute at a specific time using celery?

I've looked into PeriodicTask, but the examples only cover making it recur. I'm looking for something more like cron's ability to say "execute this task every Monday at 1 a.m." ...

Batch File and VBS script not Getting URL

I have a .bat file that I run every night to "hit" a webpage. The batch file has one argument, the URL webrun.vbs http://www.... Here is the webrun.vbs script below. Anyway, I'm running this script on two servers. One has DNS set up and is accessed like http://www.domainname.com The other server doesn't have DNS set up yet and is ...

.NET 4.0 Threading.Tasks

I've recently started working on a new application which will utilize task parallelism. I have just begun writing a tasking framework, but have recently seen a number of posts on SO regarding the new System.Threading.Tasks namespace which may be useful to me (and I would rather use an existing framework than roll my own). However lookin...

How many tasks can task scheduler run simultaneously

How many tasks can task scheduler run at the same time? I have set up three backup tasks from within SQLyog, all to start running at 12:00 am and run at subsequent 4 hours until midnight. Each task will backup all tables from three different databases to a network attached storage. Will there be any impact on the MySQL Server performanc...