ACPI administration advocacy advocacy opinion apache audio authentication bash calendar commandline cron database debian desktop development disk dvd emacs email exim files firefox firewall ftp fun grub hardware hardware html images installation ipod kde knoppix laptop latex mplayer multimedia mysql network nfs openoffice opinion opinion pdf perl php postgresql printing scripting scsi security shell sitenews slackware spam ssh subversion svk t23 t43 text thinkpad thunderbird time users windows wine wordpress xwindows xwindows
Postgresql databases default to an encoding style of ASCII. Although this is traditional, UTF8, an encoding that can handle almost any language and character set, is preferable. This is how to convert an existing postgresql database to utf8:
pg_dump asciidatabase > ascii.sql
iconv -f iso8859-1 -t utf-8 < ascii.sql > utf.sql
createdb --encoding=unicode utfdatabase
psql utfdatabase < utf.sql
It worked for me, anyway!