Thread: Donwload location for PostgreSQL version 8.2.7

Donwload location for PostgreSQL version 8.2.7

From
Anand
Date:

Hi,
 
I tried to download the PostgreSQL version 8.2.7 from the following location.
 
But i am not able to download any files. Every link is showing the "File Not Found".
Please provide a link to download PostgreSQL version 8.2.7.
-
Regards
Anand

Re: Donwload location for PostgreSQL version 8.2.7

From
Arjen Nienhuis
Date:
On Mon, Nov 9, 2009 at 12:22 PM, Anand <1008anand@gmail.com> wrote:
>
> Hi,
>
> I tried to download the PostgreSQL version 8.2.7 from the following
> location.
> http://www.postgresql.org/ftp/binary/v8.2.7/linux/rpms/redhat/rhel-5-i386/
>
> But i am not able to download any files. Every link is showing the "File Not
> Found".
> Please provide a link to download PostgreSQL version 8.2.7.
> -
> Regards
> Anand
>
>

I think you need to download 8.2.14. It is fully compatible with 8.2.7.

http://www.postgresql.org/ftp/binary/v8.2.14/linux/rpms/redhat/rhel-5-i386/

Re: Donwload location for PostgreSQL version 8.2.7

From
Sam Jas
Date:

Try the following link. May be help u.

ftp://ftp-archives.postgresql.org/pub/source/v8.2.7/

--
Thanks
Sam Jas



--- On Mon, 9/11/09, Anand <1008anand@gmail.com> wrote:

From: Anand <1008anand@gmail.com>
Subject: [GENERAL] Donwload location for PostgreSQL version 8.2.7
To: pgsql-general@postgresql.org
Date: Monday, 9 November, 2009, 11:22 AM


Hi,
 
I tried to download the PostgreSQL version 8.2.7 from the following location.
 
But i am not able to download any files. Every link is showing the "File Not Found".
Please provide a link to download PostgreSQL version 8.2.7.
-
Regards
Anand



Connect more, do more and share more with Yahoo! India Mail. Learn more.

Re: Donwload location for PostgreSQL version 8.2.7

From
Anand
Date:
Hi,
 
As i need to update the PostgreSQL version 8.2.6 with higher versions.
But in release notes its mentioned that upgrading the PostgreSQL version 8.2.6 is as follows:
PostgreSQL version 8.2.6-->8.2.7-->8.2.11-->8.2.14
 
or
can  i directly upgrade the PostgreSQL version 8.2.6 with PostgreSQL version 8.2.14?
is any issues in upgrading PostgreSQL version 8.2.6 with PostgreSQL version 8.2.14?

On Mon, Nov 9, 2009 at 5:03 PM, Arjen Nienhuis <a.g.nienhuis@gmail.com> wrote:
On Mon, Nov 9, 2009 at 12:22 PM, Anand <1008anand@gmail.com> wrote:
>
> Hi,
>
> I tried to download the PostgreSQL version 8.2.7 from the following
> location.
> http://www.postgresql.org/ftp/binary/v8.2.7/linux/rpms/redhat/rhel-5-i386/
>
> But i am not able to download any files. Every link is showing the "File Not
> Found".
> Please provide a link to download PostgreSQL version 8.2.7.
> -
> Regards
> Anand
>
>

I think you need to download 8.2.14. It is fully compatible with 8.2.7.

http://www.postgresql.org/ftp/binary/v8.2.14/linux/rpms/redhat/rhel-5-i386/



--
Thanks & Regards
Anand J Shanwad
+919980466255

Re: Donwload location for PostgreSQL version 8.2.7

From
Sam Mason
Date:
On Mon, Nov 09, 2009 at 05:43:30PM +0530, Anand wrote:
> As i need to update the PostgreSQL version 8.2.6 with higher versions.
> But in release notes its mentioned that upgrading the PostgreSQL version
> 8.2.6 is as follows:
> PostgreSQL version 8.2.6-->8.2.7-->8.2.11-->8.2.14

AFAIK that's just a recommendation to read the release notes to see
what's been fixed and what potential problems you may have been
experiencing.  Unless somebody else yells, I'd just go straight to
8.2.14 and do the REINDEX if it's needed.

It's not going to hurt doing a reindex even if you don't have any GiST
or Hash indexes, btree indexes can become unbalanced (i.e. take more
space than is needed) in some rare situations and a rebuild won't hurt.
You can run:

  SELECT pg_size_pretty(pg_relation_size(regclass 'indexname'));

to see how much space is taken by the index before and after to see if
you want to see if you're hitting this.

--
  Sam  http://samason.me.uk/