Mohammad
Mohammad

Reputation: 1304

CREATE DATABASE permission denied in database 'master' (EF code-first)

I use code-first in my project and deploy on host but I get error

CREATE DATABASE permission denied in database 'master'.

This is my connection string:

<add name="DefaultConnection" 
     connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=aspnet-test-2012615153521;Integrated Security=False" 
     providerName="System.Data.SqlClient;User ID=test;Password=test"/>

Upvotes: 95

Views: 397303

Answers (30)

hardik patel
hardik patel

Reputation: 248

For the connect from Microsoft SQL Server Management Studio add server name like
(localdb)\MSSQLLocalDB

If not working try to create db from Visual Studio > View > SQL Server Object Explorer > Add Database

same server name you can copy to the SSMS and connect and Enjoy!

SQL Server db name is generated default

Upvotes: -1

Shrikant Dandile
Shrikant Dandile

Reputation: 404

In my case, I was using Server Credentials and Trusted_Connection=True; at the same time that was throwing the same error above. I changed my connection string from:

"DefaultConnection": "Server=SHRIKANT-NEWPC2;User Id=LocalDev;Password=123;Database=WebDB;Trusted_Connection=True;TrustServerCertificate=True"

To:

"DefaultConnection": "Server=SHRIKANT-NEWPC2;User Id=LocalDev;Password=123;Database=WebDB;TrustServerCertificate=True"

Upvotes: 2

Shahriar Morshed
Shahriar Morshed

Reputation: 112

In My case , I changed the Authentication Mode from Sql Server Authentication to Windows Authentication and it worked just fine.

Upvotes: -1

Salman Khan
Salman Khan

Reputation: 17

I had the same issue, I tried couple of other methods, but none of them worked. I just simply exit the SSMS and run it as an administrator and it worked perfectly.

Upvotes: -1

Arash
Arash

Reputation: 1826

To get permission to create database in your local account follow the below given steps.

  1. Disconnect from your local account.
  2. Again Connect to Server with Login : sa and Password : pwd(pwd given to your local login).
  3. Object Explorer -> Security -> Logins -> Right click on your server name -> Properties -> Server Roles -> sysadmin -> OK
  4. Disconnect and connect to your local login and create database.

P.s: For me even without connect/disconnect to server, it worked!

Upvotes: -1

Bartosz X
Bartosz X

Reputation: 2798

This is so wrong - never over-elevate your permissions (use SA) where you don't need to do so.

  1. To create database all you need is: CREATE DATABASE, CREATE ANY DATABASE, or ALTER ANY DATABASE permission as per documentation or the login to be a member of the dbcreator server level role.
  2. Next - you need to make sure that mssql service login (NT Service\MSSQLServer by default) has permission to modify the file system in the location where you want to create your database (usually 1 .mdf file for data pages and 1 .ldf file for database logs).
  3. Then make sure you know where you create your databases! EF by default sends the laziest query possible, defining only database name: CREATE DATABASE [db_name] and then assuming all of the rest - applying default settings. Make sure you either change these to reflect locations mssql engine service has access to or elevate service permissions. Either way this modification requires mssql restart tyo apply the setting.
  4. Finally, make sure that you connect to the mssql using that login. If you perform an EXECUTE AS USER statement to switch your login it will fail. This method allows only to interpersonate DB user, not the server level login. An attemp of doing it will give you CREATE DATABASE permission denied in database 'master' error message.

Upvotes: 0

Chirag
Chirag

Reputation: 1851

If you are using .\SQLExpress as Data Source, you can add "User Instance=True" attribute to your connection string, to fix the error mentioned in the title.

For example,


Data Source=.\\SQLExpress;Integrated Security=true;  
User Instance=true;  
AttachDBFilename=|DataDirectory|\app_data\Northwind.mdf;  
Initial Catalog=Northwind;

User instances allow users who are not administrators on their local computers to attach and connect to SQL Server Express databases. Each instance runs under the security context of the individual user, on a one-instance-per-user basis.

Reference: MSDN Link for SQL Server Express User Instances

Upvotes: 0

user2012810
user2012810

Reputation: 200

Permission denied is a security so you need to add a "User" permission..

  1. Right click you database(which is .mdf file) and then properties
  2. Go to security tab
  3. Click Continue button
  4. Click Add button
  5. Click Advance button
  6. Another window will show, then you click the "Find Now" button on the right side.
  7. On the fields below, go to the bottom most and click the "Users". Click OK.
  8. Click the permission "Users" that you have been created, then Check the full control checkbox.

There you go. You have now permission to your database.

Note: The connection-string in the above questions is using SQL-server authentication. So, Before taking the above step, You have to login using windows-authentication first, and then you have to give permission to the user who is using sql-server authentication. Permission like "dbcreator".

if you login with SQL server authentication and trying to give permission to the user you logged in. it shows, permission denied error.

Upvotes: -13

Mohamad Elnaqeeb
Mohamad Elnaqeeb

Reputation: 563

run this on your master database

ALTER SERVER ROLE sysadmin ADD MEMBER your-user;  
GO 

Upvotes: 2

Saman Chalian
Saman Chalian

Reputation: 41

  1. Create the empty database manually.
  2. Change the "Integrated Security" in connection string from "true" to "false".
  3. Be sure your user is sysadmin in your new database

Now I hope you can execute update-database successfully.

Upvotes: 4

Abdur_Rahman
Abdur_Rahman

Reputation: 29

the reason for this error may be originate from forwarding of version dependent localdb in visual sudio 2013 to the version independent localDB in VS 2015 onwards, so simply change your web.config file connectionStrings from (localDb)\v11.0 to (localDB)\MSSQLLocalDB and it will certainly work. and this is a good explaination for that Version independent local DB in Visual Studio 2015

Upvotes: -1

Step 1: Disconnect from your local account.

Step 2: Again Connect to Server with your admin user

Step 3: Object Explorer -> Security -> Logins -> Right click on your server name -> Properties -> Server Roles -> sysadmin -> OK

Step 4: Disconnect and connect to your local login and create database.

Upvotes: 1

Chris
Chris

Reputation: 478

I encountered what appeared to be this error. I was running on windows and found my administrator windows user did not have administrator privileges to database.

  1. Shut down SQL Server from ‘Services’

Disable Services

  1. Open cmd window (as administrator) and run single-user mode as local admin with this command (the version of MSSQL may differ):
"C:\Program Files\Microsoft SQL Server\MSSQL14.SQLEXPRESS\MSSQL\Binn\sqlservr.exe" -m -s SQLEXPRESS
  1. Open another cmd window (as administrator)
  2. Open sqlcmd on that terminal with:
sqlcmd -S .\SQLEXPRESS
  1. Now add the sysadmin role to your user:
sp_addsrvrolemember 'domain\user', 'sysadmin'
GO
  1. Re-enable SQL Server from ‘Services’

Credit to: https://social.msdn.microsoft.com/Forums/sqlserver/en-US/76fc84f9-437c-4e71-ba3d-3c9ae794a7c4/

Upvotes: 8

Nikhil Tayal
Nikhil Tayal

Reputation: 132

I had the same problem and I tried everything available on the internet. But SSMS RUN AS ADMINISTRATOR work for me. If you still face some issue, make sure you must have downloaded the SQL SERVER.

Upvotes: -1

sam
sam

Reputation: 2616

For me I just close all current session including the SQL Server Management Studio and then I reopened execute the script below works fine

IF EXISTS (SELECT NAME FROM master.sys.sysdatabases WHERE NAME = 'MyDb')
DROP DATABASE mydb RESTORE DATABASE SMCOMDB FROM DISK = 'D:/mydb.bak' 

Upvotes: -1

Corey
Corey

Reputation: 35

The solution that worked for me was to use the Entity Framework connection string that is created when I ran the database first wizard when creating the edmx file. The connection string needs the metadata file references, such as "metadata=res:///PSEDM.csdl|res:///PSEDM.ssdl|res://*/PSEDM.msl". Also, the connection string needs to be in the config of the calling application.

HT to this post for pointing me in that direction: Model First with DbContext, Fails to initialize new DataBase

Upvotes: -1

Sam Sch
Sam Sch

Reputation: 672

Double check your connection string. When it points to non-existing database, EF tries to create tables in master database, and this error can occur.
In my case there was a typo in database name.

Upvotes: 6

Willy David Jr
Willy David Jr

Reputation: 9151

I had the same problem. This what worked for me:

  1. Go to SQL Server Management Studio and run it as Administrator.
  2. Choose Security -> Then Logins
  3. Choose the usernames or whatever users that will access your database under the Logins and Double Click it.
  4. Give them a Server Roles that will give them credentials to create database. On my case, public was already checked so I checked dbcreator and sysadmin.
  5. Run update-database again on Package Manager Console. Database should now successfully created.

Here is an image so that you can get the bigger picture, I blurred my credentials of course:enter image description here

Upvotes: 106

user7556293
user7556293

Reputation:

The solution to this problem is as simple as eating a piece of cake.This issue generally arises when your user credentials change and SQL server is not able to identify you .No need to uninstall the existing SQL server instance .You can simply install a new instance with a new instance name . Lets say if your last instance name was 'Sqlexpress' , so this time during installation , name your instance as 'Sqlexpress1' . Also don't forget to select the mix mode (i.e Sql Server Authentication & Windows Authentication) during the installation and provide a system admin password which will be handy if such a problem occurs in future. This solution will definitely resolve this issue. Thanks..

Upvotes: -1

stuartdotnet
stuartdotnet

Reputation: 3034

If you're running the site under IIS, you may need to set the Application Pool's Identity to an administrator.

Upvotes: 3

cham
cham

Reputation: 154

As the error suggests, the SQL login has no permission to create database. Permissions are granted when the login have the required roles. The role having permission to create, alter and drop database is dbCreator. Therefore it should be added to the login to solve the problem. It can be done on SQL Management Studio by right-clicking the user then go to Properties>Server Roles. I encountered the same error and resolved it by doing exactly that.

Upvotes: 3

Roman Starkov
Roman Starkov

Reputation: 61512

This error can also occur if you have multiple projects in the solution and the wrong one is set as the start-up project.

This matters because the connection string used by Update-Database comes from the start-up project, rather than the "Default project" selected in the package manager console.

(credits to masoud)

Upvotes: 9

Tomas Kubes
Tomas Kubes

Reputation: 25158

I have no prove for my solution, just assumptions.

In my case it is caused by domain name in connection string. I have an assumption that if DNS server is not available, it is not able to connect to database and thus the Entity Framework tries to create this database. But the permission is denied, which is correct.

Upvotes: 0

DOUMBIA Mamadou
DOUMBIA Mamadou

Reputation: 390

Run Visual Studio as Administrator and put your SQL SERVER authentication login (who has the permission to create a DB) and password in the connection string, it worked for me

Upvotes: 1

Marlon Vidal
Marlon Vidal

Reputation: 669

Run Visual Studio as Administrator, it worked for me

Upvotes: 12

Scott Decker
Scott Decker

Reputation: 4307

Check that the connection string is in your Web.Config. I removed that node and put it in my Web.Debug.config and this is the error I received. Moved it back to the Web.config and worked great.

Upvotes: 0

VictorySaber
VictorySaber

Reputation: 3164

I'm going to add what I've had to do, as it is an amalgamation of the above. I'm using Code First, tried using 'create-database' but got the error in the title. Closed and re-opened (as Admin this time) - command not recognised but 'update-database' was so used that. Same error.

Here are the steps I took to resolve it:

1) Opened SQL Server Management Studio and created a database "Videos"

2) Opened Server Explorer in VS2013 (under 'View') and connected to the database.

3) Right clicked on the connection -> properties, and grabbed the connection string.

4) In the web.config I added the connection string

   <connectionStrings>
<add name="DefaultConnection"
  connectionString="Data Source=MyMachine;Initial Catalog=Videos;Integrated Security=True" providerName="System.Data.SqlClient"
  />
  </connectionStrings>

5) Where I set up the context, I need to reference DefaultConnection:

using System.Data.Entity;

namespace Videos.Models
{
public class VideoDb : DbContext
{
    public VideoDb()
        : base("name=DefaultConnection")
    {

    }

    public DbSet<Video> Videos { get; set; }
}
}

6) In Package Manager console run 'update-database' to create the table(s).

Remember you can use Seed() to insert values when creating, in Configuration.cs:

        protected override void Seed(Videos.Models.VideoDb context)
        {
        context.Videos.AddOrUpdate(v => v.Title,
            new Video() { Title = "MyTitle1", Length = 150 },
            new Video() { Title = "MyTitle2", Length = 270 }
            );

        context.SaveChanges();
        }

Upvotes: 1

Sarath Rachuri
Sarath Rachuri

Reputation: 2116

I got the same problem when trying to create a database using Code First(without database approach). The problem is that EF doesn't have enough permissions to create a database for you.

So I worked my way up using the Code First(using an existing database approach).

Steps :

  1. Create a database in the Sql server management studio(preferably without tables).
  2. Now back on visual studio, add a connection of the newly created database in the server explorer.
  3. Now use the connection string of the database and add it in the app.config with a name like "Default Connection".
  4. Now in the Context class, create a constructor for it and extend it from base class and pass the name of the connection string as a parameter. Just like,

    public class DummyContext : DbContext
    {
      public DummyContext() : base("name=DefaultConnection")
      {
      }  
    }
    

5.And now run your code and see the tables getting added to the database provided.

Upvotes: 20

Shahab J
Shahab J

Reputation: 1493

Be sure you have permission to create db.(as user2012810 mentioned.)

or

It seems that your code first use another (or default) connection string. Have you set connection name on your context class?

public class YourContext : DbContext
    {
        public YourContext() : base("name=DefaultConnection")
        {

        }

        public DbSet<aaaa> Aaaas { get; set; }
    }

Upvotes: 22

cheny
cheny

Reputation: 2735

I have resolved this problem in my way. Try connection string in this way:

<add name="MFCConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\MFC.mdf;Initial Catalog=MFC;Integrated Security=false;User ID=sa;Password=123"
  providerName="System.Data.SqlClient" />

remember to set default db from master to MFC (in your case, aspnet-test-2012615153521).

Upvotes: 8

Related Questions