Why latin1_swedish_ci ????

NickFritz

Verified User
Joined
Sep 6, 2005
Messages
81
Why is my new server Collation latin1_swedish_ci

Is there a way to change this?

Basically I imported stuff from an old server and its specified everything as

latin1_swedish_ci

i don't want any collation.

I tried manually removing the collation but it won't let me in phpmyadmin

It's stuffing up my vbulletin. :/

There must be a setting somewhere defaulting to latin1_swedish_ci
 
Last edited:
Try dump your database using command line, like this:

Code:
mysqldump -u yourusername -p --skip-opt database_name > file_name.sql

Then upload to your new server using this command:

Code:
mysql -u yourusername -p database_name < file_name.sql


GOOD LUCK!!
 
NickFritz,
That depends. I recommend just leaving it to the default values until you know why you would need to change them.
 
Back
Top