Created
October 31, 2013 05:34
-
-
Save indyfromoz/7244748 to your computer and use it in GitHub Desktop.
Alter the collation of a SQL database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE master; | |
GO | |
ALTER DATABASE MyOptionsTest | |
COLLATE French_CI_AS ; | |
GO | |
--Verify the collation setting. | |
SELECT name, collation_name | |
FROM sys.databases | |
WHERE name = N'MyOptionsTest'; | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment