Re: Question about pg_upgrade from 9.2 to X.X

From: Perumal Raj <perucinci(at)gmail(dot)com>
To: Sergei Kornilov <sk(at)zsrv(dot)org>
Cc: pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: Question about pg_upgrade from 9.2 to X.X
Date: 2019-03-02 14:23:25
Message-ID: CALvqh4rYutybvycOt+Ck5wdWGjLoya7=Nynx1nYNuE_95-3v4g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers

Hi Sergei and Team

Could you share your observation further.

Perumal Raju

On Thu, Feb 28, 2019, 11:21 AM Perumal Raj <perucinci(at)gmail(dot)com> wrote:

> here is the data,
>
> postgres=# \c template1
> You are now connected to database "template1" as user "postgres".
> template1=# \dx
> List of installed extensions
> Name | Version | Schema | Description
> ---------+---------+------------+------------------------------
> plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
> (1 row)
>
> template1=# \c postgres
> You are now connected to database "postgres" as user "postgres".
> postgres=# \dx
> List of installed extensions
> Name | Version | Schema | Description
> ---------+---------+------------+------------------------------
> plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
> (1 row)
>
> postgres=# \c nagdb
> You are now connected to database "nagdb" as user "postgres".
> nagdb=# \dx
> List of installed extensions
> Name | Version | Schema | Description
> ---------+---------+------------+------------------------------
> plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
> (1 row)
>
> nagdb=# \c archive_old
>
> List of installed extensions
> Name | Version | Schema | Description
> --------------------+---------+------------+-----------------------------------------------------------
> pg_stat_statements | 1.1 | public | track execution statistics of all SQL statements executed
> plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
> (2 rows)
>
> archive_old=# \c production
> # \dx
> List of installed extensions
> Name | Version | Schema | Description
> --------------------+---------+------------+-----------------------------------------------------------
> hstore | 1.1 | public | data type for storing sets of (key, value) pairs
> pg_stat_statements | 1.1 | public | track execution statistics of all SQL statements executed
> plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
> uuid-ossp | 1.0 | public | generate universally unique identifiers (UUIDs)
> (4 rows)
>
>
> Thanks,
>
>
>
> On Thu, Feb 28, 2019 at 11:04 AM Sergei Kornilov <sk(at)zsrv(dot)org> wrote:
>
>> Hi
>>
>> > Yes, i want to get rid of old extension, Could you please share the
>> query to find extension which is using pg_reorg.
>>
>> pg_reorg is name for both tool and extension.
>> Check every database in cluster with, for example, psql command "\dx" or
>> read pg_dumpall -s output for some CREATE EXTENSION statements to find all
>> installed extensions.
>>
>> regards, Sergei
>>
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message github kran 2019-03-02 18:46:33 Re: cannot execute VACUUM during recovery
Previous Message Karsten Hilbert 2019-03-02 13:16:53 Re: Methods to quickly spin up copies of an existing databases

Browse pgsql-hackers by date

  From Date Subject
Next Message Stephen Frost 2019-03-02 16:08:16 Re: Online verification of checksums
Previous Message David Rowley 2019-03-02 13:34:20 Re: NOT IN subquery optimization