I am having problems installing design apps. It says indic_general_90_ci_as was not found. So I decided to install SQL 2008 manually, still shows the same dialogue.
Can someone help me with this.
I am having problems installing design apps. It says indic_general_90_ci_as was not found. So I decided to install SQL 2008 manually, still shows the same dialogue.
Can someone help me with this.
Hi @AtulGaikwad-0242, are you mean this error shows when you install SQL Server 2008? Could you please check error log to get more information? Because you use SQL Server 2008, the Build number should be 10.x
Path: C:\Program Files\Microsoft SQL Server\150\Setup Bootstrap\Log\Summary.txt
C:\Program Files\Microsoft SQL Server\150\Setup Bootstrap\Log\20210426_172319\Detail.txt


Hi @AtulGaikwad-0242, we have not get a reply from you. Any update for this?
I am having problems installing design apps
The best option is to contact the software vendor support
So I decided to install SQL 2008 manually
SQL Server 2008 is out-of-support since a long period.
Please run this query against the used SQL Server
select @@VERSION
GO
select *
from sys.fn_helpcollations() as col
where col.name like 'Indic_General_90_%'
In my SQL Server 2017 the collation Indic_General_90_CI_AS exists.
The question is unclear, but the issue could be that you are trying to use Indic_General_90_CI_AS as a server or database collation, but this is not possible. This is one of the collation that only supports the nvarchar data type, but you cannot use it with varchar. (Because there is no code page available.)
The collation as such has been present since SQL 2005.
10 people are following this question.