Giuseppe Sacco <giuse...@eppesuigoccas.homedns.org> writes:
> I get this error while executing a CREATE TABLE statement.
> This is my CREATE statement:

> CREATE TABLE agenzia.BarcodeByDocumentInfo (
>         docId VARCHAR(17) NOT NULL,
>         defaultOp VARCHAR(10) NOT NULL DEFAULT 'Append',
>         CONSTRAINT BcByDocInfo_pk PRIMARY KEY (docId),
>         CONSTRAINT BcByDoc_defOp_ck
>              CHECK ( defaultOp = 'Append' OR defaultOp = 'Overwrite' ),
>         CONSTRAINT BcByDoc_docId_fk FOREIGN KEY(docId)
>              REFERENCES agenzia.Documents(docId)
> );

> When I execute it on postgresql 9.0.6 I get this messages:

> NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index 
> "bcbydocinfo_pk" for table "barcodebydocumentinfo"
> ERROR:  permission denied for relation documents

This example works for me.  Are you sure you are executing the CREATE
TABLE command as user "neos"?

                        regards, tom lane

-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to