hi,
there are some server variables that identifiy collations and character sets, you can see them by using
Code:
show variables like 'character%'
and
Code:
show variables like 'collation%'
you can change them by e.g.
Code:
set global character_set_server = 'utf8'
but i don't know which character set you should use for spanish,
maybe this helps you:
http://dev.mysql.com/doc/mysql/en/charset-we-sets.html
Chagh