I\'m trying to create a database on my local machine using SSMS version 11.0.2100.60. I\'ve run the application as administrator, logged in using Windows authentication, and
I'd like to point out an alternative answer laid out on DBA SE. Download PSExec onto the box that is having the problem and follow the instructions laid out in this blog post to effortlessly change admin settings using the NT Authority\System account.
./psexec -s -i "C:\...\Ssms.exe"
Wanted to share this solution as it solved my problem!
I found the answer here:
In order to start SQL Server in single-user mode, you can add the parameter “-m” at the command line. You can also use the SQL Server Configuration Manager tool, which provides proper controls for the file access and other privileges. To use the Configuration Manager tool to recover your system, use the following steps:
- Open the Configuration Manager tool from the "SQL Server 2005| Configuration" menu
- Stop the SQL Server Instance you need to recover
- Navigate to the “Advanced” tab, and in the Properties text box add “;–m” to the end of the list in the “Startup parameters” option
- Click the “OK” button and restart the SQL Server Instance
A little more specific :