Page 1 of 1
is there in my sql something like a DTS in sql server?
Posted: Fri Nov 28, 2003 10:16 am
by pelegk2
its a set of function's that u write and the sql server executes them at night
Posted: Fri Nov 28, 2003 10:29 am
by Weirdan
No. But you can use cron and php to send the commands to mysql server at specified time.
Posted: Sat Nov 29, 2003 5:57 pm
by JAM
is there in my sql something like a DTS in sql server?
Yes, depends on
what sql server you are talking about.
hi
Posted: Sat Nov 29, 2003 11:43 pm
by pelegk2
to "Weirdan" : how do i do that?to run a php at a specified time?does it mean to leave the browser always open?
to "JAM" : i am using a mysql server-is there a dts there?
Posted: Sun Nov 30, 2003 10:41 pm
by JAM
Ah, then no, as weirdan said.
A cron-job is a background process in *nix enviroment. You do not need the browser to be opened, this is done automaticly on a given time(s) depending on setup.
http://esm2.imt-mrs.fr/~staffelb/guide_ ... /cron.html
http://forums.devshed.com/t20352/s.html
...is just some examples on how to achieve this. If you are using a win32 platform, there are a windows port of cron available (use this forum's seach to find it).
thanks alot
Posted: Mon Dec 01, 2003 12:11 am
by pelegk2