Click here to Skip to main content
15,890,438 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.
If I uninstall SQL Server and reinstall it again with default collation this Problem is sloved or not?
Posted
Comments
virusstorm 13-Aug-13 15:51pm    
Your issue is that NTEXT is being depreciated as they want you to use VARCHAR(MAX) and NVARCHAR(MAX). You could edit the "InstallMembership.sql" file and change NTEXT to NVARCHAR(MAX). If you need to use NTEXT, I suggest using SQL Server 2008R2.

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