Introduction
Collation refers to the rule set that determines how data is sorted and compared. In this article, we'll explain how you can alter collation in your Application database.
Tip: To check an application's current collation, right-click the database and select Properties.
Steps
1. Open SQL Server Management Studio and connect to your SQL server.
2. Back up your application database. Refer to this article if you don't know how.
3. Script out the application database, including both schema and data. Refer to the following article to see the detailed steps.
4. Include a default database collation in the SQL script.
For example:
ALTER DATABASE [NEW] COLLATE Modern_Spanish_CI_AI;
You can insert the collation setting right after the compatibility level settings. See the highlighted region below:
5. Right-click your application database and select Delete.
Attention: Ensure you have backed up the application database before following this step.
6. Select Execute to run the script and wait for it to complete.