dl1bff@gw:~$ /opt/products/dstar/pgsql/bin/psql dstar_global dstar -c '\d sync_mng' Table "public.sync_mng" Column | Type | Modifiers ---------------+-----------------------------+------------------------ target_cs | character(8) | not null last_mod_time | timestamp without time zone | not null mod_date | timestamp without time zone | not null default now() reg_date | timestamp without time zone | not null default now() pc_hostname | character varying(128) | not null arearp_cs | character(8) | not null zonerp_cs | character(8) | not null user_cs | character(8) | not null regist_rp_cs | character(8) | not null pc_ipaddr | inet | not null del_flg | boolean | not null default false Indexes: "pk_sync_mng" PRIMARY KEY, btree (target_cs) "ie1_sync_mng" btree (user_cs, regist_rp_cs) "ie2_sync_mng" btree (pc_hostname) "ie3_sync_mng" btree (last_mod_time) Triggers: trigger_sync_mng_ext BEFORE INSERT OR UPDATE ON sync_mng FOR EACH ROW EXECUTE PROCEDURE process_sync_mng_external() dl1bff@gw:~$ /opt/products/dstar/pgsql/bin/psql dstar_global dstar -c '\d sync_mng' | grep "trigger_sync_mng_ext" trigger_sync_mng_ext BEFORE INSERT OR UPDATE ON sync_mng FOR EACH ROW EXECUTE PROCEDURE process_sync_mng_external() dl1bff@gw:~$