

Open the SQL Server Configuration Manager, open the TCP/IP Properties under SQL Network Configuration and set the listen all option to NO. Once you have configured the RDS Connection Broker login, you will see it appear under logins in the security folder for the SQL instance. In the Server Roles page select DBCreator, Sysadmin and public. Configure security permissionsĬreate a security group and add the RDCB servers as members.Īdd all connection brokers into the security GroupĬreate a new user and add the Group name to the login name. Select default settings for the reporting services. You can set a Service account, for this example i have used the defaults.Įnter the User names that can access SQL administrator and a SA password. The home page loads and then the login throws the above error.For this example i am using SQL Express 2012 and a single instance.įor more information on high available SQL Solutions please see the following link: Server 2003, 2008 R2, and 2012 (demo platform)(all Express versions), now in production this is failing. But this same string has worked on 4 different servers now with no changes. I also thought this might be a connection string issue. I typically assign NETWORK SERVICE account to the database to allow access and this is how this one is set up as well. I believe the specific error message relating toĬREATE DATABASE permission denied in database 'master'
#SQL EXPRESS 2012 R2 FULL#
I can run the full app on the localhost (server 2012) but I can not access it over a web connection. I have added security to the db so that it can be opened and I even installed Visual Studio 2012 on the server to be certain that the db could be opened. I know there is only one database name on the server called myDB.mdf, so I don't believe the "same name" portion of error. UPDATE: Uninstalled and reinstalled SQL Server and SSMS. (Which I am guessing is probably the case.)
#SQL EXPRESS 2012 R2 INSTALL#
Or I did not install the SQL Server 2008 R2 the same way I have done in the past 5 servers I have set up.
#SQL EXPRESS 2012 R2 WINDOWS#
The only difference here is that this is Windows Server 2012 R2 on a VM. My SQL Server installations are basically all the same. I have checked permissions and they match the other servers where this database has been deployed. I thought I understood what this error was. Please review the stack trace for more information about the error and where it originated in the code.Įxception Details: : CREATEĭATABASE permission denied in database 'master'. The same name exists, or specified file cannot be opened, or it isĭescription: An unhandled exception occurred during the execution of the current web request. An attempt toĬ:\inetpub\techTran\App_Data\myDB.mdf failed. This DB includes an ASP membership for the web site that it is tied to.ĬREATE DATABASE permission denied in database 'master'. I have in the past been able to simply copy myDB.mdf to basically any web server and open or access the DB tables. I think this must have something to do with the installation sequence of the components on the new server.

My con string: connectionString="Data Source=.\SQLEXPRESS AttachDbFilename=|DataDirectory|\myDB.mdf Integrated Security=True User Instance=False" ProviderName="" I have the SQL Server 2008 R2 installation on the Windows Server 2012 R2 machine. I am now trying to deploy to a new Windows Server 2012 R2 installation and I am getting some errors. Windows Server 2003, 2008 R R2 Eval, all Express versions. I have been using this connection string with no problem on a number of databases and MS operating systems.
