Could not find stored procedure ‘dbo.aspnet_CheckSchemaVersion’

Did you run aspnet_regsql.exe against WinHost.com’s sql server?

aspnet_regsql.exe -S DBServerName -U DBLogin -P DBPassword -A all -d DBName

If you don’t know where to run above command then you can simply run ‘aspnet_regsql.exe’ executable file.

In order to locate this file open your RUN Command Box by pressing Windows Key + r and put below command in that %windir%\Microsoft.NET\Framework\v4.0.30319 and Hit enter then find ‘aspnet_regsql.exe’ file. It will open a wizard that you can follow to resolve this error.

This error mostly occurs when you didn’t enabled Roles in your asp.net mvc project At starting before aspnet identity table automatically created.

You will need to make sure you run this so that the tables and objects are created on WinHost.com’s SQL server.

Leave a Comment