| From: | John DeSoi <desoi(at)pgedit(dot)com> |
|---|---|
| To: | eraskin(at)paslists(dot)com |
| Cc: | pgsql-novice(at)postgresql(dot)org |
| Subject: | Re: Problem with search_path and creating objects |
| Date: | 2015-08-18 19:44:56 |
| Message-ID: | BE084B4B-15F2-4FC7-9E49-DD9AF9F591CA@pgedit.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-novice |
> On Aug 18, 2015, at 10:09 AM, Eric Raskin <eraskin(at)paslists(dot)com> wrote:
>
> $ psql -U sbowner -d pas -h postgres
> Password for user sbowner:
> psql (9.4.4)
> Type "help" for help.
>
> pas=> show search_path;
> search_path
> -------------------
> "sbowner, public"
> (1 row)
>
I think the key question is where the search_path got set to "sbowner, public". If you had the default setting in postgresql.conf:
#search_path = '"$user",public' # schema names
It should look just like this:
pas=> show search_path;
search_path
----------------
"$user",public
(1 row)
Are you sure you don't have search_path attached to a user? And you have reset the one you had for the database?
Maybe try
alter database pas set search_path to default;
alter user sbowner set search_path to default;
Then logout and back in to show the search_path.
John DeSoi, Ph.D.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Eric Raskin | 2015-08-18 19:47:12 | Re: Problem with search_path and creating objects |
| Previous Message | Eric Raskin | 2015-08-18 15:09:19 | Problem with search_path and creating objects |