Re: [BUGS] wrong Bison version on INSTALL file

2003-09-26 Thread Bruce Momjian
That file will be regenerated from SGML before release --- the SGML version is fixed. --- Gaetano Mendola wrote: > Hi, > the INSTALL file say: > >* Flex and Bison are needed to build a CVS checkout or if you changed

[BUGS] wrong Bison version on INSTALL file

2003-09-26 Thread Gaetano Mendola
Hi, the INSTALL file say: * Flex and Bison are needed to build a CVS checkout or if you changed the actual scanner and parser definition files. If you need them, be sure to get Flex 2.5.4 or later and Bison 1.50 or later. Other yacc programs can sometimes be used, but doing

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

2003-09-26 Thread Tom Lane
Tomas Szepe <[EMAIL PROTECTED]> writes: > indexes: > stats_min_pkey primary key btree (ip, "start") > stats_min_start btree ("start") > stats_hr_pkey primary key btree (ip, "start") > stats_hr_start btree ("start") > ip is of type "inet" in all tables. > start is of type "timestamp without time zo

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

2003-09-26 Thread Gaetano Mendola
Tomas Szepe wrote: INFO: --Relation public.stats_min-- INFO: Index stats_min_start: Pages 34445; Tuples 1985464: Deleted 404651. CPU 1.19s/2.41u sec elapsed 17.86 sec. INFO: Index stats_min_pkey: Pages 76501; Tuples 1986938: Deleted 404651. CPU 3.98s/5.47u sec elapsed 217.07 sec.

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

2003-09-26 Thread Tomas Szepe
> [EMAIL PROTECTED] > > You've definitely got an index-bloat problem on stats_min (the indexes > are four times the size of the table :-(), and I suspect the same on > stats_hr, though not quite as bad. What are the datatypes of the > index columns? indexes: stats_min_pkey primary key btree (ip,

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

2003-09-26 Thread Tom Lane
Tomas Szepe <[EMAIL PROTECTED]> writes: > INFO: --Relation public.stats_min-- > INFO: Index stats_min_start: Pages 34445; Tuples 1985464: Deleted 404651. > CPU 1.19s/2.41u sec elapsed 17.86 sec. > INFO: Index stats_min_pkey: Pages 76501; Tuples 1986938: Deleted 404651. > CPU 3.98s/5.

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

2003-09-26 Thread Tomas Szepe
> > The output of VACUUM VERBOSE for the problem table(s) would be > > interesting. > > Just posted, please see my message to > Stephan Szabo <[EMAIL PROTECTED]>, CC [EMAIL PROTECTED] > with Message-ID: <[EMAIL PROTECTED]> Oh, and the names of the problematic tables are stats_min and stats_hr. -

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

2003-09-26 Thread Tomas Szepe
> [EMAIL PROTECTED] > > Tomas Szepe <[EMAIL PROTECTED]> writes: > > I'm afraid so. The weird thing is, we once tried running > > VACUUM FULL followed by REINDEX and although the process > > took ages to complete, it didn't seem to help either. :( > > > I'll post whatever debug data I'm asked for

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

2003-09-26 Thread Tom Lane
Tomas Szepe <[EMAIL PROTECTED]> writes: > I'm afraid so. The weird thing is, we once tried running > VACUUM FULL followed by REINDEX and although the process > took ages to complete, it didn't seem to help either. :( > I'll post whatever debug data I'm asked for, just don't make > me run VACUUM F

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

2003-09-26 Thread Tomas Szepe
> [EMAIL PROTECTED] > > Tomas Szepe <[EMAIL PROTECTED]> writes: > > We have a production database that happens to receive several > > thousand row updates per minute. We VACUUM ANALYZE every four > > hours with max_fsm_pages set to 210, and it's no use. > > Have you spent any time determinin

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

2003-09-26 Thread Tomas Szepe
> [EMAIL PROTECTED] > > On Fri, 26 Sep 2003, Tomas Szepe wrote: > > > > [EMAIL PROTECTED] > > > > > > Did you use -f on the vacuumdb? If not, it did a normal vacuum (which > > > isn't likely to help) not a full vacuum. > > > > There are scenarios where VACUUM FULL is not an option because > > of

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

2003-09-26 Thread Tom Lane
Tomas Szepe <[EMAIL PROTECTED]> writes: > We have a production database that happens to receive several > thousand row updates per minute. We VACUUM ANALYZE every four > hours with max_fsm_pages set to 210, and it's no use. Have you spent any time determining exactly where the problem is? I'm

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

2003-09-26 Thread Stephan Szabo
On Fri, 26 Sep 2003, Tomas Szepe wrote: > > [EMAIL PROTECTED] > > > > Did you use -f on the vacuumdb? If not, it did a normal vacuum (which > > isn't likely to help) not a full vacuum. > > There are scenarios where VACUUM FULL is not an option because > of its resource-hungriness and plain VACUU

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

2003-09-26 Thread Tomas Szepe
> [EMAIL PROTECTED] > > Did you use -f on the vacuumdb? If not, it did a normal vacuum (which > isn't likely to help) not a full vacuum. There are scenarios where VACUUM FULL is not an option because of its resource-hungriness and plain VACUUM just doesn't seem to help. We have a production dat

Re: [BUGS] pg_dump/all doesn't output schemas correctly (v7.3.4)

2003-09-26 Thread Bruce Momjian
This has been fixed in the current CVS snapshot and will be in the next 7.4 beta. Thanks. --- Ben Grimm wrote: > I haven't tried the 7.4 beta, so it may be fixed there - but in > 7.3.4, pg_dumpall doesn't generate the comma

Re: [BUGS] pg 7.4beta1 doc bug: vacuum not updated

2003-09-26 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian <[EMAIL PROTECTED]> writes: > > This has been added to the 7.4 open items list: > > ftp://momjian.postgresql.org/pub/postgresql/open_items > > That was fixed some time ago. OK. Was it this commit? I assume so. -- Bruce Momjian| ht

Re: [BUGS] pg 7.4beta1 doc bug: vacuum not updated

2003-09-26 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > This has been added to the 7.4 open items list: > ftp://momjian.postgresql.org/pub/postgresql/open_items That was fixed some time ago. regards, tom lane > ---

Re: [BUGS] pg 7.4beta1 doc bug: vacuum not updated

2003-09-26 Thread Bruce Momjian
This has been added to the 7.4 open items list: ftp://momjian.postgresql.org/pub/postgresql/open_items --- Joseph Shraibman wrote: > The output of the vacuum command on > http://developer.postgresql.org/docs/postgr

[BUGS] plperl: No such file or directory. (Solaris 9, PGSQL 7.4, OpenSSL,Perl)

2003-09-26 Thread Nayib Kiuhan
I ran into the following problem building PostgreSQL 7.4beta3 on Solaris9 (sparc) using GCC 3.3 and OpenSSL 0.9.7b and Perl 5.8.0: (./configure --with-perl --with-openssl) gcc -shared -h libplpgsql.so.1 pl_gram.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o -L../../../../src/port -L/usr/local/

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

2003-09-26 Thread Javier Carlos
Quoting Stephan Szabo <[EMAIL PROTECTED]>: > On Thu, 25 Sep 2003, Javier Carlos wrote: > > > > > > POSTGRESQL BUG REPORT TEMPLATE > > >

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

2003-09-26 Thread Javier Carlos
Quoting Stephan Szabo <[EMAIL PROTECTED]>: > On Thu, 25 Sep 2003, Javier Carlos wrote: > > > Quoting Stephan Szabo <[EMAIL PROTECTED]>: > > > > > On Thu, 25 Sep 2003, Javier Carlos wrote: > > > > > > > > > > > > > > >

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

2003-09-26 Thread Christopher Browne
[EMAIL PROTECTED] (Javier Carlos) writes: > *** When I make a 'DROP DATABASE' to the database where that table belongs to, > mi /var partition returns to its original size (in this example to 9%). VACUUM ANALYZE is your friend, here. PostgreSQL uses MVCC, wherein each update results in the creat

[BUGS] pthread.h

2003-09-26 Thread Ali Karaki
Hi, I downloaded the source code for version 7.4 Beta 3, and tried to compile with Visual C++ 6.0, using the following command from a DOS window: nmake /f win32.mak when the make runs, at some point during the compilation, it stops and reports the following error: pthread.h cannot be found. I