>Is there any way to do a case insensitive sort?.
Try:
SELECT colum_name
FROM table_name
ORDER BY upper(colum_name);
For a list of support functios like upper() check this url:
http://www.postgresql.org/docs/aw_pgsql_book/node92.html
_________
Adrian Tineo