Re: Trouble creating extensions: postgis and postgis_topology

From: "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>
To: "Zeng, David (GE Healthcare)" <david(dot)zeng(at)ge(dot)com>
Cc: "pgsql-admin(at)lists(dot)postgresql(dot)org" <pgsql-admin(at)lists(dot)postgresql(dot)org>
Subject: Re: Trouble creating extensions: postgis and postgis_topology
Date: 2018-03-08 19:45:23
Message-ID: CAKFQuwbWpd1DXA_YY3zXRKGKKLL1ZTi9MHDQ15zJ8ufVBwVJEA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Thu, Mar 8, 2018 at 12:41 PM, Zeng, David (GE Healthcare) <
david(dot)zeng(at)ge(dot)com> wrote:

> Hello, my friends, I am configuring PostGIS for the database restore. I
> ran the following sequence successfully on a brand new database yesterday
> afternoon:
>
>
>
> CREATE SCHEMA postgis;
>
> ALTER DATABASE dz5 SET search_path="$user", public, postgis,topology;
>
> GRANT ALL ON SCHEMA postgis TO public;
>
> CREATE EXTENSION postgis WITH SCHEMA postgis;
>
> CREATE EXTENSION postgis_topology;
>
>
>
> However, I got the following error when it get to “CREATE EXTENSION
> postgis_topology;” step today:
>
>
>
> ERROR: type "geometry" does not exist
>
>
>
> Any thoughts? Has any one of you experienced this before?
>
> ​
>
>
​You've altered the database default search_path but haven't actually
changed it in the active session. You either need to do "set search_path"
or, after the alter database, disconnect and reconnect to the database.

David J.

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Zeng, David (GE Healthcare) 2018-03-08 20:11:19 Trouble creating extensions: postgis and postgis_topology
Previous Message Zeng, David (GE Healthcare) 2018-03-08 19:41:29 Trouble creating extensions: postgis and postgis_topology