Asked by:
error

Question
-
how to fix Indic_general_90_ci_as
Friday, August 14, 2020 8:23 AM
All replies
-
-
Could you please share your question against the collation ?
SELECT * FROM fn_helpcollations() where name = 'Indic_General_90_CI_AS' to read about the collation.
Indic-General-90, case-insensitive, accent-sensitive, kanatype-insensitive, width-insensitive
You can use below script to find your objects and related collation ob DB level. .
SELECT object_name(object_id) as TableName, name as ColumnName, collation_name
FROM sys.columns
WHERE object_name(object_id) NOT LIKE 'sys%'
AND object_name(object_id) NOT LIKE 'queue%'
AND object_name(object_id) NOT LIKE 'file%'
AND object_name(object_id) NOT LIKE 'spt%'
AND object_name(object_id) NOT LIKE 'MSrep%'Friday, August 14, 2020 10:04 AM -
Hi jatinmehra,
>how to fix Indic_general_90_ci_as
Follow steps in the doc. to set or change the collation: set-or-change-the-server-collation, set-or-change-the-database-collation
And this could be helpful: how-to-fix-the-collation-of-a-microsoft-sql-server-database
BR,
Mia
If the reply helped, please “Mark Answer” and upvote it.--Mia
""SQL Server related"" forum will be migrated to a new home on Microsoft Q&A SQL Server!
We invite you to post new questions in the "SQL Server related" forum’s new home on Microsoft Q&A SQL Server !
For more information, please refer to the sticky post.Monday, August 17, 2020 2:51 AM -
Hi jatinmehra,
Is the reply helpful?
BR,
Mia
If the reply helped, please "Mark Answer" and upvote it.--Mia
""SQL Server related"" forum will be migrated to a new home on Microsoft Q&A SQL Server!
We invite you to post new questions in the "SQL Server related" forum’s new home on Microsoft Q&A SQL Server !
For more information, please refer to the sticky post.Tuesday, August 18, 2020 1:08 AM