Re: triggers, performance Was: Re: [GENERAL] rotate records - Mailing list pgsql-performance

From Jeevanandam, Kathirvel (IE10)
Subject Re: triggers, performance Was: Re: [GENERAL] rotate records
Date
Msg-id CB23ED848A082748B413D5AE98DDFC3D69FD24@IE10EV801.global.ds.honeywell.com
Whole thread Raw
Responses Re: triggers, performance Was: Re: [GENERAL] rotate records
List pgsql-performance
I am using triggers for all the events (insert,delete,update) please
find the details below.

trg_delpointtable BEFORE DELETE ON pointtable FOR EACH ROW EXECUTE
PROCEDURE pp_delpointtable()

trg_insdelpoints AFTER DELETE ON pointtable FOR EACH ROW EXECUTE
PROCEDURE pp_insdelpoints()

trgins_pointtable AFTER INSERT ON pointtable FOR EACH ROW EXECUTE
PROCEDURE pp_inspointtable()

trupd_pointtable AFTER UPDATE ON pointtable FOR EACH ROW EXECUTE
PROCEDURE pp_updpointtable()


Basically, this each trigger modifies the content of other dependent
tables.

Best Regards,
Jeeva.K

-----Original Message-----
From: Tino Wildenhain [mailto:tino@wildenhain.de]
Sent: Tuesday, February 28, 2006 10:34 AM
To: Jeevanandam, Kathirvel (IE10)
Cc: pgsql-general@postgresql.org
Subject: triggers, performance Was: Re: [GENERAL] rotate records

Jeevanandam, Kathirvel (IE10) schrieb:
> Hi all,
>
> I am facing performance issues even with less than 3000 records, I am
> using Triggers/SPs in all the tables. What could be the problem.
> Any idea it is good to use triggers w.r.t performance?

Much to general. What triggers? (what are they doing, when are
they invoked...?). Please provide much greater details with
your request or nobody can help.

Regards
Tino

PS: and try not to steal threads

pgsql-performance by date:

Previous
From: "Nik"
Date:
Subject: Large Table With Only a Few Rows
Next
From: Bruno Wolff III
Date:
Subject: Re: Large Table With Only a Few Rows