question

AtulGaikwad-0242 avatar image
0 Votes"
AtulGaikwad-0242 asked CarrinWu-MSFT edited

indic_general_90_ci_as was not found

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.

sql-server-general
· 2
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

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

91971-1.png91962-2.png


0 Votes 0 ·
1.png (34.2 KiB)
2.png (31.6 KiB)

Hi @AtulGaikwad-0242, we have not get a reply from you. Any update for this?

0 Votes 0 ·
OlafHelper-2800 avatar image
0 Votes"
OlafHelper-2800 answered

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.



5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

ErlandSommarskog avatar image
0 Votes"
ErlandSommarskog answered

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.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.