Re: [GENERAL] how do functional indices work?

2001-09-03 Thread John Clark Naldoza y Lopez
ion ] [ [ NOT ] DEFERRABLE ] [ INITIALLY checktime ] =] So perhaps you could try: CREATE TABLE people ( id INT4 PRIMARY KEY, fullname TEXT ); CREATE TABLE USERS ( id INT4, person_id INT4 REFERENCES people(id) ON DELETE CASCADE ON UPDATE CASCADE ); I think =[ I

Re: [GENERAL] Database Permissions

2001-08-23 Thread John Clark Naldoza y Lopez
equire identd or password authentication for the 127.0.0.1 or your.local.machine.ip.address ;-) HTH Cheers, John Clark -- /) John Clark Naldoza y Lopez (\ / )Software Design Engineer III ( \ _( (__ Web-Application Development_) )_ (((\ \> /_>Cable Modem Network Management System <_\

Re: [GENERAL] Case sensitivity

2001-08-13 Thread John Clark Naldoza y Lopez
are also > issues) so we can't simply modify the function attached to the comparison > operators. Is there some means of modifying the behaviour of PostgreSQL so > that it is case insensitive? -- /) John Clark Naldoza y Lopez (\ / )Software Desi

Re: [GENERAL] Newbe questions: Setting Passwords

2001-05-16 Thread John Clark Naldoza y Lopez
Anatole Varin wrote: > > Hi, > Thanks for your advice. I set my password as you advised below, however I'm > still having some problems connecting. When I try to connect I get the > following error message: > > Unable to connect to PostgreSQL server: FATAL 1: SetUserId: user 'password=' > is not

Re: [GENERAL] Newbe questions: Setting Passwords

2001-05-16 Thread John Clark Naldoza y Lopez
Hi, You could use the following...;-) psql -U postgres template1 UPDATE pg_shadow SET passwd='whatever' WHERE usename='postgres'; You could also use GRANT or create other users as well... kindly check the administrative section of your documentation...;-) Cheers, John Clark