Would like to setup Postgresql 8.3 and above on Windows to automatically execute a series of SQL statements after the server has started.
Can't seem to find any information. Any ideas ?
|
Would like to setup Postgresql 8.3 and above on Windows to automatically execute a series of SQL statements after the server has started. Can't seem to find any information. Any ideas ? | |||||
feedback
|
This question came from our site for professional and enthusiast programmers.
|
You can do this by creating another service that depends on Postgres & launches something that runs these queries, but in reality there's no point: Postgres will pull data into its cache (and the OS disk cache) on the first query it runs. Bottom line: You might improve first-use performance if someone hits your application right after startup, otherwise these caches will start naturally emptying out and your optimization will drain away with them. | |||
|
feedback
|