Changing a Server from Case Sensitive to Case Insensitive.

  • Can you change a Server from Case Sensitive to Case Insensitive without having to reinstall the server?

    I am using SQL Server 2000

    Thanks

    Nick

  • You can use ALTER DATABASE to change the default collation of a database. For a detailed example, see the topics "SQL Server Collation Fundamentals" and "ALTER DATABASE" in SQL Server Books Online.

  • Agreed, you can alter the a database but not the server default.

    Just make sure you run the command in master!  Otherwise, you get an error message.

    JerseyMo.

  • just wondering...what if you changed the collation of model?  Would that have any effect (for new databases)?

  • SQL Server WIDE collation can't be changed with an ALTER statement. It is selected at setup time. You can rebuild master with the rebuildm utility but I would Advice you just reinstall the server

     


    * Noel

  • But don't forget that changing the servers collation does _not_ change the collation of any already existing database, table or column!

    regards karl

    Best regards
    karl

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply