Re: cannot delete some records [9.3]

From: Andy Colson <andy(at)squeakycode(dot)net>
To: Frank Miles <fpm(at)u(dot)washington(dot)edu>, pgsql-general(at)postgresql(dot)org
Subject: Re: cannot delete some records [9.3]
Date: 2013-12-05 22:30:58
Message-ID: 52A0FEA2.7070500@squeakycode.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 12/5/2013 4:05 PM, Frank Miles wrote:

> The table schema is {\d
> credmisc}:
> And this is all owned by: {\dp credmisc}
>

You have a table credmisc, in schema credmisc, owned by credmisc?
It could be a path problem. Maybe trigger should be:

trig_credmisc_updt BEFORE UPDATE ON credmisc.credmisc FOR EACH ROW
EXECUTE PROCEDURE credmisc.trigonupdtcredmisc()

> trig_credmisc_ins BEFORE INSERT ON credmisc FOR EACH ROW EXECUTE
> PROCEDURE trigoninscredmisc()
> trig_credmisc_updt BEFORE UPDATE ON credmisc FOR EACH ROW EXECUTE
> PROCEDURE trigonupdtcredmisc()
>

>
> Access privileges
> Schema | Name | Type | Access privileges | Column access
> privileges
> --------+----------+-------+-------------------+--------------------------
> public | credmisc | table | fpm=ardxt/fpm +|
> | | | bioeng=r/fpm |
>

Could we see the permissions on the functions too?

-Andy

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Frank Miles 2013-12-05 23:29:01 Re: cannot delete some records [9.3]
Previous Message Andy Colson 2013-12-05 22:26:23 Re: cannot delete some records [9.3]