[BUGS] Dúvidas sobre postGresSQL

2006-07-20 Thread Olavo Setubal
Bom dia    Estou tentando aprender a trabalhar com o ambiente de programação Glade, conjugado com postgresSQL. Peguei um tutorial, na internete (http://psl-pr.softwarelivre.org/projetomono/artigos/basico/InstConfigPG.html) que informa alguns passos para a utilização do postgresSQL. Infeliz

[BUGS] BUG #2540: function upper(..) and operator 'like' problem

2006-07-20 Thread radoslaw wisniewski
The following bug has been logged online: Bug reference: 2540 Logged by: radoslaw wisniewski Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.4-2 Operating system: Linux Description:function upper(..) and operator 'like' problem Details: function upper combi

Re: [BUGS] BUG #2525: 'No buffer space available' error running pg_dump on win2k for large bytea values

2006-07-20 Thread Steve McWilliams
No ideas on this I take it? > > The following bug has been logged online: > > Bug reference: 2525 > Logged by: Steve McWilliams > Email address: [EMAIL PROTECTED] > PostgreSQL version: 8.1.4 > Operating system: Windows 2000 > Description:"No buffer space available" er

[BUGS] BUG #2541: XML2 module: odd query results

2006-07-20 Thread Thiago Silva
The following bug has been logged online: Bug reference: 2541 Logged by: Thiago Silva Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1 Operating system: Debian GNU/Linux Description:XML2 module: odd query results Details: Hi, Recently, I had some problems wi

Re: [BUGS] BUG #2540: function upper(..) and operator 'like' problem

2006-07-20 Thread Peter Eisentraut
radoslaw wisniewski wrote: > function upper combined with like opertaor and german umlauts (db > encoding UTF8) fails. You have probably configured the wrong locale, but you have not given nearly enough information to reproduce your problem. -- Peter Eisentraut http://developer.postgresql.org/~

[BUGS] BUG #2542: ALTER USER foo SET bar = func(baz) errors out

2006-07-20 Thread David Fetter
The following bug has been logged online: Bug reference: 2542 Logged by: David Fetter Email address: [EMAIL PROTECTED] PostgreSQL version: All Operating system: All Description:ALTER USER foo SET bar = func(baz) errors out Details: foo=> ALTER USER foo SET search_pa

Re: [BUGS] BUG #2542: ALTER USER foo SET bar = func(baz) errors out

2006-07-20 Thread Tom Lane
"David Fetter" <[EMAIL PROTECTED]> writes: > is there some way to let the right hand side of SET be the (TEXT) output of > a function? No. SET is a utility command and utility commands generally don't do expression evaluation. (There are some specific reasons why not for SET, but I won't get int

Re: [BUGS] BUG #2542: ALTER USER foo SET bar = func(baz) errors out

2006-07-20 Thread David Fetter
On Thu, Jul 20, 2006 at 10:46:27PM -0400, Tom Lane wrote: > "David Fetter" <[EMAIL PROTECTED]> writes: > > is there some way to let the right hand side of SET be the (TEXT) > > output of a function? > > No. SET is a utility command and utility commands generally don't > do expression evaluation.