how to add support for other language in sql server 2005

Answered how to add support for other language in sql server 2005

  • Tuesday, March 13, 2012 10:55 PM
     
     
    how to add other language beside default, when i select language for database?

All Replies

  • Tuesday, March 13, 2012 11:23 PM
     
     

    You can change the entire server default language, one login or one sessions language.

    To change the default language of the server

    EXEC sp_configure 'default language', 9
    RECONFIGURE

    To change the default language of a login:

    ALTER LOGIN sa WITH DEFAULT_LANGUAGE = French;

    To change the language in a session:
    SET Language French

    If you are expecting the server messages in a different language than US English,then that localized version of SQL server should have been installed.


    Anup | Database Consultant

    Blog: www.sqlsailor.com Twitter: Follow me !

    Please use Mark as Answer if my post solved your problem and use Vote As Helpful if a post was useful.

  • Wednesday, March 14, 2012 6:47 AM
     
     
    Can you clarify what are you trying to achieve?

    Best Regards, Uri Dimant SQL Server MVP http://dimantdatabasesolutions.blogspot.com/ http://sqlblog.com/blogs/uri_dimant/

  • Thursday, March 15, 2012 8:10 AM
    Moderator
     
     Answered

    Hi zzdravkin,

    If you wanna change SQL Server management studio language, please refer to How to: Set the Default Language (SQL Server Management Studio)

    And for database&login you can refer to How to set the default language & default database for a login?

    Best Regards,
    Iric
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.