If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Character set and Collation

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-29-05, 17:36
jortiz jortiz is offline
Registered User
 
Join Date: Jun 2003
Posts: 294
Exclamation Character set and Collation

Hello, I created a database 1 month ago, on mysql 4.1.16 with the default character set and collation, and I would like to know how to change It to spanish for all the table in the database.

Thanks
Reply With Quote
  #2 (permalink)  
Old 10-05-05, 07:51
Chagh Chagh is offline
Registered User
 
Join Date: May 2005
Posts: 127
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
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On