[GENERAL] include directives in postgresql.conf

2011-07-02 Thread AI Rumman
Can anyone please tell me that how to use 'include directives' in Postgresql.conf? http://www.postgresql.org/docs/8.4/interactive/config-setting.html -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsq

Re: [GENERAL] include directives in postgresql.conf

2011-07-02 Thread Thom Brown
On 2 July 2011 10:42, AI Rumman wrote: > Can anyone please tell me that how to use 'include directives' in > Postgresql.conf? > http://www.postgresql.org/docs/8.4/interactive/config-setting.html Well it's quite clear from the documentation. It's just: include 'filename' So if you have a config

MATCH FULL (Was: Re: [GENERAL] Adding Foreign Key Constraint To Existing Table)

2011-07-02 Thread Alban Hertroys
On 1 Jul 2011, at 23:10, Adrian Klaver wrote: > http://www.postgresql.org/docs/9.0/interactive/sql-altertable.html > Examples at bottom of page: > "To add a foreign key constraint to a table: > ALTER TABLE distributors ADD CONSTRAINT distfk FOREIGN KEY (address) > REFERENCES addresses (address) M