Re: [BUGS] BUG #3132: I don't access to DB

2007-03-13 Thread Gaetano Mendola
ing these problem using psql client, please do the following. Try these commands ( I suppose you can have root privileges ): root# su - postgres postgres# psql -l this will show you all the database in your engine. If you need to access on of these database: psql Regards Gaetano Men

Re: [BUGS] BUG #1927: incorrect timestamp returned

2005-10-01 Thread Gaetano Mendola
ect timestamp '2005-09-23 23:59:59.999' > > I get the following result (note the value of the seconds): > > 2005-09-23 23:59:60.00 It's the leap second. Regards Gaetano Mendola ---(end of broadcast)--- TIP 9: In

Re: [BUGS] BUG #1921: NULL<>NULL ?!?!?!?!?!?!?

2005-09-29 Thread Gaetano Mendola
e tt<>NULL; > > 0 row(s) !!! This is not a bug. If you want find all values with that field null you have to do: select tt from test where tt is null; And I can assure you this is what the standard say. Regards Gaetano Mendola ---(end of broadcast)--- TIP 2: Don't 'kill -9' the postmaster

Re: [BUGS] BUG #1439: unable to create more than 21 database connections

2005-01-28 Thread Gaetano Mendola
trying to connect 50 separate clients via Npgsql 0.7 beta3. Inside the postgres config maxconnections = 100 (the config settings are a all default!) Did you restart the server ? Regards Gaetano Mendola ---(end of broadcast)--- TIP 7: don't forg

Re: [BUGS] problem with 8.0rc1 not using indexes(solved)

2004-12-21 Thread Gaetano Mendola
the function by itself Explain would always report the index being used, but when run in the context of the function the indexes where not being used. Is not solved because is a bad idea run the server with that parameter disabled. Regards Gaetano Mendola ---(end of

Re: [BUGS] Possible bug: pg_hba.conf file

2004-11-08 Thread Gaetano Mendola
Tom Lane wrote: ! maskl = (0xUL << (32 - (int) bits)) ! & 0xUL; Is that "& 0xUL" required ? ---(end of broadcast)--- TIP 8: explain analyze i

Re: [BUGS] Not a real bug, but an error

2004-11-01 Thread Gaetano Mendola
separate files, for example you'll miss the FK creation delayed after the data load. Regards Gaetano Mendola ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]

Re: [BUGS] Question on the 8.0Beta Version

2004-10-23 Thread Gaetano Mendola
telly postgresql is not a "time to market" slave. Regards Gaetano Mendola ---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faqs/FAQ.html

Re: [BUGS] overloaded functions and NULL

2004-10-13 Thread Gaetano Mendola
o(); NOTICE: INTEGER CONTEXT: PL/pgSQL function "sp_foo" line 4 at perform NOTICE: INTEGER CONTEXT: PL/pgSQL function "sp_foo" line 6 at perform sp_foo 0 (1 row) AS the OP can see even calling sp_bar with a null value then the correct function is called.

Re: [BUGS] BUG #1285: Violacion de segmento

2004-10-13 Thread Gaetano Mendola
shows me this message. Violacion de segmento (violation of segment). Good to know. May you provide an example? Are you using your own C functions ? Regards Gaetano Mendola ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an

Re: [BUGS] BUG #1284: The backend has broken the connection.

2004-10-12 Thread Gaetano Mendola
base is in recovery mode' This is normal if you try to reconnect the DB immediately after the error above, this because the engine perform a recovery after have close all connections. Regards Gaetano Mendola ---(end of broadcast)--- TIP 3: if

Re: [BUGS] Error with PostgreSQL 8.0 beta 2, in "make check" on Mac OS

2004-09-22 Thread Gaetano Mendola
#x27;t seem to think so! This is a known issue, thank you for the report. Regards Gaetano Mendola ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match

Re: [BUGS] vacuum problem

2004-09-11 Thread Gaetano Mendola
nline when you're done messing. I can not reproduce this problem on a RH8 (2.4.20.x) system Do you mean that is not enough stop your java application in order to retrieve the space with a vacuum ? Do you have some connection in status: "Idle in transaction" ? Regards Gaetano Men

Re: [BUGS] vacuum problem

2004-09-11 Thread Gaetano Mendola
d and I never had a problem with that. Regards Gaetano Mendola ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]

[BUGS] 8.0 incompatibility

2004-09-08 Thread Gaetano Mendola
"quota" is not assigned yet DETAIL: The tuple structure of a not-yet-assigned record is indeterminate. and is clear to me why. Shall not this be inserted in the release note ? Regards Gaetano Mendola ---(end of broadcast)--- TIP 9: the plan

Re: [BUGS] BUG #1244: Postgres doesn't work on FAT

2004-09-07 Thread Gaetano Mendola
tart on a FATXX, and not trust on the failre of a cacls.exe My 2 cents. Regards Gaetano Mendola ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match

Re: [BUGS] BUG #1242: Major bug in pgSQL

2004-09-07 Thread Gaetano Mendola
ion of the same row, the result however is the same. Are you reindexing your tables regulary ? Regards Gaetano Mendola ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmail

Re: [BUGS] plpgsql error handling bug

2004-09-05 Thread Gaetano Mendola
ve already some backwards-incompatibilities so one more is mitigated by the other one. Regards Gaetano Mendola ---(end of broadcast)--- TIP 8: explain analyze is your friend

Re: [BUGS] Sugestion

2004-09-02 Thread Gaetano Mendola
t; addition to the usual services applet. Because a window user expect to have the applications running visible on the traybar; and also is annoyng start->control panel->administrative-tools->service->... I know is possible to do the same with a CLI but we are speaking about windows user

Re: [BUGS] BUG #1231: Probelm with transactions in stored code.

2004-08-27 Thread Gaetano Mendola
Robert Treat wrote: On Thu, 2004-08-26 at 09:08, Gaetano Mendola wrote: Robert Treat wrote: On Thu, 2004-08-26 at 04:23, Gaetano Mendola wrote: Tom Lane wrote: Stephan Szabo <[EMAIL PROTECTED]> writes: I believe it sees the one that was valid in the snapshot as of the beginning of the fu

Re: [BUGS] BUG #1231: Probelm with transactions in stored code.

2004-08-27 Thread Gaetano Mendola
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Robert Treat wrote: | On Thu, 2004-08-26 at 09:08, Gaetano Mendola wrote: | |>Robert Treat wrote: |> |> |>>On Thu, 2004-08-26 at 04:23, Gaetano Mendola wrote: |>> |>> |>>>Tom Lane wrote: |>>> |>

Re: [BUGS] BUG #1231: Probelm with transactions in stored code.

2004-08-26 Thread Gaetano Mendola
Robert Treat wrote: On Thu, 2004-08-26 at 04:23, Gaetano Mendola wrote: Tom Lane wrote: > Stephan Szabo <[EMAIL PROTECTED]> writes: > >>I believe it sees the one that was valid in the snapshot as of the >>beginning of the function. > > > Actually, the problem is th

Re: [BUGS] BUG #1231: Probelm with transactions in stored code.

2004-08-26 Thread Gaetano Mendola
havior. Seems like 8.0 is exactly the right > version to consider doing that in. If my 2 cents are valid I agree with you, what I don't totally agree is why consider this bug as a *feature* in previous 8.0 version. Regards Gaetano Mendola ---(end of broadcast)--- TIP 8: explain analyze is your friend

Re: [BUGS] BUG #1231: Probelm with transactions in stored code.

2004-08-25 Thread Gaetano Mendola
select in that function doesn't see the same row if you perform that same select after the function execution, and for sure doesn't see the same row that the update statement touch. Regards Gaetano Mendola ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]

Re: [BUGS] typo in postgresql.conf

2004-08-14 Thread Gaetano Mendola
least with the TCP stacks I've worked with. mmm You can bind a local address not an interface, may be I don't have your experiences but I think that interfaces in Linux world are eth0, eth1, ... for sure I'm wrong :-) Regards Gaetano Mendola ---(end of broadc

Re: [BUGS] Installation of PostgreSQL

2004-08-10 Thread Gaetano Mendola
Win32 works only if the filesystem is journalized, NTFS for istance. Regards Gaetano Mendola ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]

Re: [BUGS] BUG #1204: user-defined function in transaction

2004-08-04 Thread Gaetano Mendola
'; IF NOT FOUND THEN CREATE TEMP TABLE test ( a integer ) ON COMMIT DELETE ROWS; END IF; select a INTO my_value from test limit 1; return 0; END; ' LANGUAGE 'plpgsql' VOLATILE; regression=# select sp_test(); sp_test - 0 (1 row) regression=# s

Re: [BUGS] UNIQUE not honoured for NULL

2004-07-12 Thread Gaetano Mendola
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bruno Wolff III wrote: | On Mon, Jul 12, 2004 at 14:47:34 +0200, | Gaetano Mendola <[EMAIL PROTECTED]> wrote: | |>As someone says NULL = NULL is false | | | As someone else pointed out, NULL = NULL is NULL which is not TRUE. Yes, that it

Re: [BUGS] UNIQUE not honoured for NULL

2004-07-12 Thread Gaetano Mendola
says NULL = NULL is false so that two rows are different. If you want enforce only one null value for that column you have to write you own trigger. Regards Gaetano Mendola ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to

Re: [BUGS] 7.4: serial not working ?

2004-07-03 Thread Gaetano Mendola
o solve your problem setting the serial value equal to max(id)+1 in that table. Regards Gaetano Mendola ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org

Re: [BUGS] BUG #1186: Broken Index?

2004-07-03 Thread Gaetano Mendola
e each 10 minutes. I strongly suggest you to use the autovacuum daemon. Do not esitate to ask how use it. Regards Gaetano Mendola ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org

Re: [BUGS] BUG #1185: Problem with last added user in group (lack of rights)

2004-06-29 Thread Gaetano Mendola
which couldn't connect) can finally connect to db. Reproduced on 7.4 but not in 7.5devel Regards Gaetano Mendola ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster

Re: [BUGS] Bug in optimizer

2004-05-05 Thread Gaetano Mendola
using the version 7.4.x ? Regards Gaetano Mendola ---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings

Re: [BUGS] (ver. 7.4) select netmask('192.168.1.5/24') return '255.255.255.0/24'

2003-12-09 Thread Gaetano Mendola
saint wrote: (ver. 7.4) select netmask('192.168.1.5/24') return '255.255.255.0/24' not '255.255.255.0' (example in docs) (ver. 7.3) return '255.255.255.0' Fixed on 7.4.1 Regards Gaetano Mendola ---(end of broadcast)-

[BUGS] Other Contributors List

2003-11-17 Thread Gaetano Mendola
Other Contributors list is in alphabetic order, right ? The family name of "Massimo Dal Zotto" is "Dal Zotto", so must be inserted just after Robert Bruccoleri ( another italian family name BTW :-) ). Regards Gaetano Mendola

Re: [BUGS] Duplicate primary key record

2003-11-16 Thread Gaetano Mendola
Gaetano Mendola ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org

Re: [BUGS] Duplicate primary key record

2003-11-16 Thread Gaetano Mendola
too and I solved not running anymore each night a REINDEX on the table. I posted this problem in the past ... Do you scedule reindex on this table very often ? Regards Gaetano Mendola ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster

Re: [BUGS] before trigger doesn't, on insert of too long data

2003-11-10 Thread Gaetano Mendola
Neil Conway wrote: Gaetano Mendola <[EMAIL PROTECTED]> writes: I don't know how the check for the data integrity is implemented but if is a trigger It isn't -- trigger firing order is irrelevant to the original question. Well, it is. If the data integrity was done with a system

Re: [BUGS] before trigger doesn't, on insert of too long data

2003-11-10 Thread Gaetano Mendola
4) drop trigger: trigger_a 5) create trigger: trigger_a ( now trigger b is the oldest one) test=# insert into test values ( 10 ); NOTICE: TRIGGER A NOTICE: TRIGGER B INSERT 3416836 1 why this ? Regards Gaetano Mendola ---(end of broadcast)

Re: [BUGS] Autocomplete on Postgres7.4beta5 not working?

2003-11-09 Thread Gaetano Mendola
Bruce Momjian wrote: This now works in current CVS and will be in 7.4 final: Thank you. regards Gaetano Mendola ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatyp

Re: [BUGS] PANIC: can't juggle and compress too

2003-10-29 Thread Gaetano Mendola
s allocated share of FSM space decreases due to roundoff error. Fix committed accordingly. Less dangerous then this: http://mathworld.wolfram.com/RoundoffError.html :-O Regards Gaetano Mendola ---(end of broadcast)--- TIP 3: if posting/rea

[BUGS] Autocomplete on Postgres7.4beta5 not working?

2003-10-26 Thread Gaetano Mendola
Hi all I'm esperiencing problem with the autocomplete on postgres 7.4beta5: #select * from pg_l and no suggestions out. On postgres 7.3.4: #select * from pg_l pg_language pg_largeobject pg_listener pg_locks am I wrong ? regards Gaetano Mendola ---(e

Re: [BUGS] Postgresql 'eats' all mi data partition

2003-09-27 Thread Gaetano Mendola
u sure that all indexes are needed and that a partial index could not help ? What about the statistics on these indexes ? Are they really used ? Yup, they're all essential. :( May I see yours tipical queries where these indexes are involved ? Regards Gaetano Mendola

Re: [BUGS] Postgresql 'eats' all mi data partition

2003-09-27 Thread Gaetano Mendola
d that a partial index could not help ? What about the statistics on these indexes ? Are they really used ? Regards Gaetano Mendola. ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]

[BUGS] wrong Bison version on INSTALL file

2003-09-26 Thread Gaetano Mendola
2.5.4 or later and Bison 1.875 or later. Other yacc programs can sometimes be used, but doing so requires extra effort and is not recommended. Other lex programs will definitely not work. Regards Gaetano Mendola ---(end of broadcast

Re: [BUGS] Postgresql 'eats' all mi data partition

2003-09-26 Thread Gaetano Mendola
36.46 sec. INFO: Pages 217213: Changed 1362, Empty 0; Tup 10810476: Vac 348991, Keep 0, UnUsed 352822. Total CPU 17.09s/13.98u sec elapsed 284.52 sec. Do you regular reindex these tables ? Regards Gaetano Mendola ---(end of broadcast)--- TIP

Re: [BUGS] PostgreSql 7.3.4 & 7.4 on MacOS X

2003-09-15 Thread Gaetano Mendola
"Tom Lane" <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] (Payman) writes: > > Hey tom and your PowerBook ??? > > I had it back for a day, and it went belly up again :-( Look at this then http://www.waveworks.net/mac.html :-) Regards Gaetano Mendola ---

Re: [BUGS] pl/pgsql problem with search_path

2003-09-07 Thread Gaetano Mendola
t; > > Of course, none of this is going to happen until someone gets around to > > creating infrastructure for flushing cached plans at need. Right at the > > moment the answer is going to have to be "don't do that". > > Yep. I was j

Re: [BUGS] small bug in op + between datetime and integer

2003-08-17 Thread Gaetano Mendola
teger + date is not necessary but is better to have just to forget that not exist each time that someone wrote an expression involving integer and date. Regards Gaetano Mendola ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match

[BUGS] pgdb.py is still wrong in Postgres 7.3.1 rpm

2002-12-26 Thread Gaetano Mendola
I already post the fact that the file pgdb.py distribuited with Postgres 7.3 is wrong but was not already fixed in 7.3.1 The class pgdbTypeCache is not working with the version 7.3.1 the method getdescr try to do the following select: "SELECT typname, typprtlen, typlen FROM pg_type" and th

[BUGS] 7.3 RMPS bugs ( pgdb.py and postgresql launch script )

2002-12-08 Thread Gaetano Mendola
known ) 2) when postgres is launched the script do: echo " [ OK ] " or echo " [ FAIL ] " but should be more correctly: echo_success or echo_failure I attach both patch ( I added also the stop_immediate ) Regards Gaetano Mendola