Matthew Chambers wrote:
> Would something like this work best, or is it better to use pgdump?
>
> CREATE DATABASE newDatabase TEMPLATE oldDatabase ENCODING 'UTF8'
>
> Does using a template do a file system copy or just SQL copy everything over?
Using the old database as template will not change the encoding,
so I think that will not work at all.
The documentation says:
The encoding and locale settings must match those of the template database,
except when template0 is used as template.
Did you try it?
I think you will have to dump/restore.
Yours,
Laurenz Albe