Cuando trató de cambiar la intercalación de mi base de datos existente (incluidos los datos) desde ARABIC_CS_AS
a PERSIAN_100_CS_AS
se produce el siguiente error:problema con el cambio de intercalación de base de datos (SQL Server 2008)
Alter failed for Database 'XXXX'. (Microsoft.SqlServer.Smo)
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
The object 'ItemTables' is dependent on database collation. The database collation cannot be changed if a schema-bound object depends on it. Remove the dependencies on the database collation and then retry the operation.
The object 'CK_FilteredReportColumnFilters' is dependent on database collation. The database collation cannot be changed if a schema-bound object depends on it. Remove the dependencies on the database collation and then retry the operation.
The object 'CK_FilteredReportColumnFilters_1' is dependent on database collation. The database collation cannot be changed if a schema-bound object depends on it. Remove the dependencies on the database collation and then retry the operation.
The object 'CK_FilteredReportColumnFilters_2' is dependent on database collation. The database collation cannot be changed if a schema-bound object depends on it. Remove the dependencies on the database collation and then retry the operation.
The object 'CK_Reports' is dependent on database collation. The database collation cannot be changed if a schema-bound object depends on it. Remove the dependencies on the database collation and then retry the operation.ALTER DATABASE failed. The default collation of database 'XXXX' cannot be set to Persian_100_CS_AS. (Microsoft SQL Server, Error: 5075)
tratando de corregir los errores mencionados al eliminar esos objetos de la base de datos, se produce otro error con otros títulos en el proceso de conversión.
¿Alguna idea? ¿Hay alguna solución bien definida para resolver este problema?
posible duplicado de [Cambiar intercalación en la columna de índice agrupado en SQL 2005] (http://stackoverflow.com/questions/581517/change-collation-on-clustered-index-column-in-sql-2005) – gbn