문제

How can I remove the collation of a column after it has been set?

The standard collation of a column in the SQL Server is "NULL". It means, the collation of the database is used.

The TSQL-Statement ALTER table ALTER column COLLATE database_default will explicit set the collation of the column to the one of the database, but it doesn't restore the original state of no collation (NULL collation).

Can we really drop the collation?

도움이 되었습니까?

해결책

No, you can't drop the collation of a column or even of a database.

1: If you do not specify any collation, the columns will use the default collation of the database.

2: If no collation is specified by the database, then the server collation is used.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top