> The only thing that I dislike about Postgres is the case-sensitivity of > data in the database, if anybody knows how to turn it off let me know.
You can use select statements like this: select * from abc where upper(xyz) = 'SEARCH'; select * from abc where xyz ~* 'search'; POSIX Regular Expressions include operators for case insensitive matches. Jens -- registered linux user #130250 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list