我想通过以下方式构建新的 postgreSQL 数据库:
CREATE DATABASE newdb
WITH OWNER = postgres
ENCODING = 'UTF8'
TABLESPACE = pg_default
LC_COLLATE = 'zh_CN.UTF-8'
CONNECTION LIMIT = -1;
错误是:
ERROR: new collation (zh_CN.UTF-8) is not compatible with the collation of the template database (en_US.UTF8)
HINT: 使用与模板数据库中相同的排序规则,或使用 template0 作为模板。
如何更改模板数据库集合?