Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个名为的表空间hdd_tablespace,我不想在那里自动创建所有新数据库。基本上当我执行时:
hdd_tablespace
CREATE DATABASE FOO;
我希望在hdd_tablespace.
我更新postgresql.conf了:
postgresql.conf
default_tablespace = 'hdd_tablespace'
但是,新的数据库仍然在pg_default.
pg_default
实际上,我还必须更新template1作为模板数据库的数据库。
template1
我不得不;
ALTER DATABASE template1 SET TABLESPACE hdd_tablespace;