1. 程式人生 > >no schema has been selected to create in … error 解決方案

no schema has been selected to create in … error 解決方案

 

What is the search path?

Per documentation:

[...] tables are often referred to by unqualified names, which consist of just the table name. The system determines which table is meant by following a search path, which is a list of schemas to look in.

Bold emphasis mine. This explains identifier resolution

, and the “current schema” is, per documentation:

The first schema named in the search path is called the current schema. Aside from being the first schema searched, it is also the schema in which new tables will be created if the CREATE TABLE command does not specify a schema name.

Bold emphasis mine. The system schemas pg_temp

(schema for temporary objects of the current session) and pg_catalog are automatically part of the search path and searched first, in this order. Per documentation:

pg_catalog is always effectively part of the search path. If it is not named explicitly in the path then it is implicitly searched before

searching the path's schemas. This ensures that built-in names will always be findable. However, you can explicitly place pg_catalog at the end of your search path if you prefer to have user-defined names override built-in names.

Bold emphasis as per original. And pg_temp comes before that, unless it's put into a different position.

How to set it?

You have various options to actually set the runtime variable search_path.

  1. Set a cluster-wide default for all roles in all databases in postgresql.conf (and reload). Careful with that!

    search_path ='blarg,public'

    The shipped default for this setting is:

    search_path ="$user",public

    The first element specifies that a schema with the same name as the current user is to be searched. If no such schema exists, the entry is ignored.

  2. Set it as default for one database:

    ALTERDATABASE test SET search_path = blarg,public;
  3. Set it as default for the role you connect with (effective cluster-wide):

    ALTER ROLE foo SET search_path = blarg,public;
  4. Or even (often best!) as default for the role only in a given database:

    ALTER ROLE foo INDATABASE test SET search_path = blarg,public;
  5. Write the command at the top of your script (Or execute it at any point in your session:

    SET search_path = blarg,public;
  6. Set a specific search_path for the scope of a function (to be safe from malicious users with sufficient privileges). Read about Writing SECURITY DEFINER Functions Safely in the manual.

CREATEFUNCTION foo() RETURNS void AS$func$BEGIN-- do stuffEND$func$ LANGUAGE plpgsql SECURITY DEFINER
       SET search_path=blarg,public,pg_temp;

 

 

Higher number in my list trumps lower number.
The manual has even more ways, like setting environment variables or using command-line options.

To see the current setting:

SHOW search_path;

To reset it:

RESET search_path;

Per documentation:

The default value is defined as the value that the parameter would have had, if no SET had ever been issued for it in the current session.

share | improve this answer edited Oct 11 '15 at 1:32     answered Jan 30 '12 at 17:10 Erwin Brandstetter 331k 64 599 781