Ho installato il pacchetto postgresql-8.4 con le opzioni predefinite. Tutto ha funzionato bene, tuttavia non riesco a riuscire a creare database unicode:
-- This doesn't work
createdb test1 --encoding UNICODE
-- This works
createdb test2
Il messaggio di errore,
createdb: database creation failed: ERROR: new encoding (UTF8) is incompatible with the encoding of the template database (SQL_ASCII)
è un po 'sconcertante perché (afaik) non uso un modello per creare il nuovo db, o si riferisce implicitamente al database "postgres" predefinito per qualche motivo?
O forse mi manca un'impostazione in un .conf
file?