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
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
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