| Owner
--------+----------
ula | postgres
public | postgres
Устанавливаю путь схемы для базы
ALTER DATABASE ula SET search_path TO ula,public;
postgres=# \c ula
You are now connected to database "ula" as user "postgres".
ula=# SELECT current_schemas(true);
current_schemas
---------------------
{pg_catalog,public}
(1 row)
путь не меняеться( почему?
> Создал схему Не в базе данных ula создали, скорее всего. Ну а далее происходит вот это (см. https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-SEARCH-PATH ): The value for search_path must be a comma-separated list of schema names. Any name that is not an existing schema, or is a schema for which the user does not have USAGE permission, is silently ignored.
точно) удалил схему и создал в базе все ок, спасибо
Обсуждают сегодня