Setup Umbraco 8 using SQL Server Management Studio
Hi,
I have downloaded the Umbraco 8 and want to use Sql Server (.mdf) rather than the internal db (.sdf).
Whenever I try connect the instance it give me error:
System.Data.SqlClient.SqlException: 'Invalid object name 'umbracoKeyValue'.'
If what you've done is create a new blank database and you want the installer to run again afresh and set all the Umbraco tables up for you again then delete the version value in the Umbraco.Core.ConfigurationStatus key around line 26 of the web.config
Setup Umbraco 8 using SQL Server Management Studio
Hi, I have downloaded the Umbraco 8 and want to use Sql Server (.mdf) rather than the internal db (.sdf). Whenever I try connect the instance it give me error:
System.Data.SqlClient.SqlException: 'Invalid object name 'umbracoKeyValue'.'
The query string I'm using the connect is:
name="umbracoDbDSN" connectionString="Data Source=localhost;Initial Catalog=db_umbraco;Integrated Security=True;MultipleActiveResultSets=True;" providerName="System.Data.SqlClient"
Hi,
I never use integrated security but this works for me:
Though your error seems to be suggesting that it can't find the table umbracoKeyValue on the database. Are you sure you've migrated it properly?
If what you've done is create a new blank database and you want the installer to run again afresh and set all the Umbraco tables up for you again then delete the version value in the Umbraco.Core.ConfigurationStatus key around line 26 of the web.config
Also delete your connection string line.
Then it should fire up the installer when you run the solution.
Thank you so much for replies... Yes I didn't migrated tables from SQL Server Compact db to Ms SQL Server. After I did it works fine.
Thanks once again :-)
is working on a reply...