Results 1 to 3 of 3

Thread: Ms Sql 2000 for Norweign

  1. #1
    Join Date
    Jul 2003
    Posts
    1

    Ms Sql 2000 for Norweign

    I've been asked to setup a db for Norweigns to use. Currently SQL is defaulting to server parameters (English). Do I have to do anything to be able to house content in the Norweign language?
    Last edited by cgatto; 07-10-2003 at 12:05 PM.

  2. #2
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254
    Try this.

    SELECT *
    FROM ::fn_helpcollations()

    Then when you create a database create with this Danish_Norwegian*

  3. #3
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254
    Create a database with different collation

    create database test123 collate Danish_Norwegian_CI_AI_KS

    To alter a database to different collation

    alter database test123 collate Danish_Norwegian_CI_AI


    For create tables with different collation

    http://forums.databasejournal.com/sh...hlight=collate

Posting Permissions

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