Link to home
Start Free TrialLog in
Avatar of Mahonek
Mahonek

asked on

How To Configure Character Set

How do I configure the character set in sql server 2008?

Thanks.
Avatar of Raja Jegan R
Raja Jegan R
Flag of India image

To view the list of character set or collations, issue

select * from fn_helpcollations()

To change the collation / character set of your database, then issue

ALTER DATABASE db_name COLLATE collation_name

Hope this helps
Avatar of Mahonek
Mahonek

ASKER

After opening the server management studio and pasting select * from fn_helpcollations(), it just runs in a debugging mode.
Avatar of Mahonek

ASKER

Hold on, it finally gave the result.  I will now try and alter the character set accordingly.
ASKER CERTIFIED SOLUTION
Avatar of Mahonek
Mahonek

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial