Click here to Skip to main content
15,915,093 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
Please help me.

I got this error when I am execute Aspnet_regsql.exe:

An error occurred during the execution of the SQL file 'InstallMembership.sql'. The SQL error number is 4188 and the SqlException message is: Column or parameter '@Comment' has type 'ntext' and collation 'Persian_100_CS_AS_KS_WS_SC'. The legacy LOB types do not support Unicode supplementary characters whose codepoints are U+10000 or greater. Change the column or parameter type to varchar(max), nvarchar(max) or use a collation which does not have the _SC flag.

what is solution? please help me.
Posted
Comments
[no name] 23-Jul-13 5:15am    
Your solution is to "Change the column or parameter type to varchar(max), nvarchar(max) or use a collation which does not have the _SC flag"

1 solution

As ThePhantomUpvoter has mentioned, the solution is: Change the column or parameter type to nvarchar(max) or use a collation which does not have the _SC flag

Set or Change The Database Collation (T-SQL)[^]
Set or Change the Column Collation[^]
Data types (T-SQL)[^]
ALTER TABLE (T-SQL)[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900