Results 1 to 3 of 3

Thread: set up sql server 2000 - Collation settings

  1. #1
    Join Date
    Apr 2003
    Location
    India
    Posts
    11

    set up sql server 2000 - Collation settings

    hi all,

    I need to select collation settings to support chinese characters. As i came to know that i need to select 950 character set. But problem is that i am not able to find the option for chinese characters i.e, 950 character set in the collation settings of the setup. It will be helpful if anyone could suggest me if there is any other option to set while set up or in an existing sql server instance to support chinese character data.

    Thanks in advance,
    sekhar

  2. #2
    Join Date
    Sep 2002
    Posts
    5,938
    You can set collation at serve, database, table, even column level in sql2k. Besides, check unicode data type.

  3. #3
    Join Date
    Jul 2003
    Posts
    142
    Run the query
    SELECT *
    FROM ::fn_helpcollations()
    WHERE Name LIKE 'Chinese%'
    to determine available collations.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •