Hello,
You can use pgjobs-1.00.133-src.tar.gz from gbrog
http://gborg.postgresql.org/ - really confortable scheduler for
postgresql, but in C++.
Regards
Pavel
On Thu, 6 Jan 2005 [EMAIL PROTECTED] wrote:
> Is there a way to write a function in postgresql and have the database run
> it on a s
[EMAIL PROTECTED] wrote:
Is there a way to write a function in postgresql and have the database run
it on a schedule?
I would like the database to run a function on every Friday.
Use cron or windows scheduler.
J
Thanks
Robert Stewart
Network Eng
Governor's Office of Technology
101 Cold Harbor
Wo
Title: functions in postgresql
Is there a way to write a function in postgresql and have the database run it on a schedule?
I would like the database to run a function on every Friday.
Thanks
Robert Stewart
Network Eng
Governor's Office of Technology
101 Cold Harbor
Work # 502 564 96
I have a function written in C that works well in PostgreSQL under Linux
but I have to move it into PostgreSQL under Windows NT.
I made dll with it by doing followed steps :
1) I added new function at the end of file
int WINAPI mydll_init(HANDLE h, DWORD reason, void *foo)
{
return 1;
}
2) I