question about LocalSqlServer
Posted
by Alexander
on Stack Overflow
See other posts from Stack Overflow
or by Alexander
Published on 2010-04-09T22:20:10Z
Indexed on
2010/04/09
22:23 UTC
Read the original article
Hit count: 151
ASP.NET
I know that by default ASP.NET ships with LocalSqlServer... I just uploaded my website and I did the following:
<remove name="LocalSqlServer"/>
<add name="LocalSqlServer" connectionString="Data Source=winsqlus03.lxa.perfora.net,1433; Initial Catalog=db323219488; User ID= dboxxxxxxxxx; Password=xxxxx;"/>
And inside my App_Data I still have the ASPNETDB.MDF, when I tried to run it... What I got is:
Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'.
why is this?
© Stack Overflow or respective owner