Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>As documentation, <a href="http://www.postgresql.org/docs/current/static/multibyte.html" rel="noreferrer">22.2. Character Set Support</a> says:</p> <blockquote> <p>An important restriction, however, is that each database's character set must be compatible with the database's LC_CTYPE (character classification) and LC_COLLATE (string sort order) locale settings. For C or POSIX locale, any character set is allowed, but for other locales there is only one character set that will work correctly. (On Windows, however, UTF-8 encoding can be used with <strong>any locale</strong>.)</p> </blockquote> <p>I see that probably you have PostgreSQL under Windows host (<code>English_United States.1252 locale</code>), so you can use whatever of these (<code>Posix</code> is as same as <code>C</code> and means "no locale"), read <a href="http://www.postgresql.org/docs/current/static/locale.html" rel="noreferrer">22.1. Locale Support</a>:</p> <blockquote> <p>Locale support refers to an application respecting cultural preferences regarding alphabets, sorting, number formatting, etc.</p> <p>If you want the system to behave as if it had no locale support, use the special locale C or POSIX.</p> </blockquote> <p><strong>EDIT:</strong></p> <p>Windows platform isn't POSIX compliant, so you should use <code>C</code> locale for that platform. I don't know why installer has POSIX option (I guess it's rather a bug):</p> <p><img src="https://i.stack.imgur.com/5bvZF.png" alt="enter image description here"></p> <p>To create new cluster without locale you can simply use <code>--no-locale</code> switch e.g.:</p> <pre>initdb --no-locale -E UTF-8 C:\pgdata</pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload