Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using SQL Server Developer edition.

I am getting error

Create Database Permission Denied in database 'Master'

when I use Entity Framework code-first in my asp.net mvc 4 application.

I use the following connection string in my web.config file...

<ConnectionStrings>
    <add name="DefaultConnection" 
         connectionString="Data Source=Hasib\sql2008;Initial Catalog=MvcTest;User ID=sa;Password=sa1234" providerName="System.Data.Client">
</ConnectionStrings>

When I register and login then it's ok, but when I write a model named Moves.cs and generate controller and views using that model and run the application then this error occurs.

Any help?

share|improve this question
No matter if it is a test or dev system, never use the SA user. If possible use Windows Authentication or create an own user with restricted user rights. – Snoopy Nov 18 '12 at 10:06

4 Answers

up vote 4 down vote accepted

Please replace your <ConnectionStrings> name with your DbContext class Please try this..

<ConnectionStrings>
    <add name="DbContextClass" 
         connectionString="Data Source=Hasib\sql2008;Initial Catalog=MvcTest;User ID=sa;Password=sa1234" providerName="System.Data.Client">
</ConnectionStrings>

I hope it will be ok.

share|improve this answer

I am not sure this would help but I had the same issue when I try to do this in my office computer. Most probably it is due to user account , password etc.

So I put the below connection string and it worked perfectly for me.

<add name="MovieDBContext" 
     connectionString="Data Source=|DataDirectory|Movies.sdf" 
     providerName="System.Data.SqlServerCe.4.0"/>

By doing this, you are sure that nothing wrong with your code except the connection.

share|improve this answer

Perhaps an EF problem.

Check the answer for this post:

asp mvc 3 noobie: CREATE DATABASE permission denied in database 'master'

share|improve this answer

Try the following code snippets..

 <ConnectionStrings>
        <add name="DbContextClass" 
             connectionString="Data Source=Hasib\sql2008;Initial Catalog=MvcTest;User ID=username;Password=password" providerName="System.Data.Client">
    </ConnectionStrings>

And one thing, always try to avoid user sa. It's recommended by msdn.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.