I'm in the middle of taking an MS Access App and putting it into postgres, and for one particular form, in the worst case scenario, roughly 200 records need to be inserted into a table.
MS Access running on P233's & all data and work files on a Netware server (P200 cpu), accomplishes the task in <1sec.
Postgres on a linux server and an Athlon 1.13GHz nForce chipset, accomplishes the task in anywhere from ~20sec min to ~90sec max.
Harddrives are comparible, it's not disc speed.
SELECT queries run at about the same speed, I can't tell a speed difference even when performing joins and returning hundreds of rows.
Are there any general hints to optimizing tables in postgres for insertions? Is there any hope?
MS Access running on P233's & all data and work files on a Netware server (P200 cpu), accomplishes the task in <1sec.
Postgres on a linux server and an Athlon 1.13GHz nForce chipset, accomplishes the task in anywhere from ~20sec min to ~90sec max.
Harddrives are comparible, it's not disc speed.
SELECT queries run at about the same speed, I can't tell a speed difference even when performing joins and returning hundreds of rows.
Are there any general hints to optimizing tables in postgres for insertions? Is there any hope?