Reputation: 1304
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
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!
Upvotes: -1
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
Reputation: 112
In My case , I changed the Authentication Mode from Sql Server Authentication to Windows Authentication and it worked just fine.
Upvotes: -1
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
Reputation: 1826
To get permission to create database in your local account follow the below given steps.
P.s: For me even without connect/disconnect to server, it worked!
Upvotes: -1
Reputation: 2798
This is so wrong - never over-elevate your permissions (use SA) where you don't need to do so.
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.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).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.CREATE DATABASE permission denied in database 'master'
error message.Upvotes: 0
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
Reputation: 200
Permission denied is a security so you need to add a "User" permission..
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
Reputation: 563
run this on your master database
ALTER SERVER ROLE sysadmin ADD MEMBER your-user;
GO
Upvotes: 2
Reputation: 41
Now I hope you can execute update-database successfully.
Upvotes: 4
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
Reputation: 11
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
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.
"C:\Program Files\Microsoft SQL Server\MSSQL14.SQLEXPRESS\MSSQL\Binn\sqlservr.exe" -m -s SQLEXPRESS
sqlcmd -S .\SQLEXPRESS
sp_addsrvrolemember 'domain\user', 'sysadmin'
GO
Credit to: https://social.msdn.microsoft.com/Forums/sqlserver/en-US/76fc84f9-437c-4e71-ba3d-3c9ae794a7c4/
Upvotes: 8
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
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
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
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
Reputation: 9151
I had the same problem. This what worked for me:
Here is an image so that you can get the bigger picture, I blurred my credentials of course:
Upvotes: 106
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
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
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
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
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
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
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
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
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 :
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
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
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