Re: Prefixing schema name

Поиск
Список
Период
Сортировка
От Achilleas Mantzios
Тема Re: Prefixing schema name
Дата
Msg-id e46adbdf-07bf-2c0b-f63e-5de0f34311c2@matrix.gatewaynet.com
обсуждение исходный текст
Ответ на Re: Prefixing schema name  ("David G. Johnston" <david.g.johnston@gmail.com>)
Ответы Re: Prefixing schema name
Список pgsql-general
On 08/03/2018 01:13, David G. Johnston wrote:
On Wed, Mar 7, 2018 at 4:05 PM, Tiffany Thang <tiffanythang@gmail.com> wrote:
The search_path configuration works only for queries.

​Um....


"​A CREATE command specifying an unqualified object name creates the object in the current schema (the one at the front of the search path, which can be determined with the function current_schema)"


In pg_dump relies heavily on search_path for all CREATE statements.


For example:
Is there a way to run the create/insert statements below without prefixing the schema name, user1?

As the user, user1:
Create table user1.table1 (id int);
Insert into user1.table1 values (1);

​Just omitting "user1" and seeing what happens would be informative.  You should find it does exactly what you think - namely because the default search_path will cause "user1" to appear first.

Insert is more similar to Select than it is to Create - the object being inserted into must already exist

David J.
​​


-- 
Achilleas Mantzios
IT DEV Lead
IT DEPT
Dynacom Tankers Mgmt

В списке pgsql-general по дате отправления:

Предыдущее
От: PegoraroF10
Дата:
Сообщение: Replication push instead of pull
Следующее
От: Dylan Luong
Дата:
Сообщение: RE: Resync second slave to new master