Assuming you mean sorting when encoding, you can change the default value for new databases, for example:
alter database model collate SQL_Latin1_General_CP1_CI_AS
Change the sorting of an existing database:
alter database YourDbName collate SQL_Latin1_General_CP1_CI_AS
The list of available mappings is returned by the system function:
select * from fn_helpcollations()
source share