How to fix Microsoft SQL Server, Error: 262?

I'm opening the SQL Server Management Studio with run as administrator...

And there is no problem with Windows Authentication Connection.

I'm choosing "New Database" by right-click the Databases folder.

And giving name 'BTS' for the Database.

When i'm choosing OK, i get the error as,

enter image description here

How to fix it?

4 Answers

From this blog post

To add a Windows user that has the login “machinename\Administrator” to the sysadmin fixed server role

  1. Log on to the computer using the credentials for the machinename\Administrator account.
  2. Click the Start button, point to All Programs, click Microsoft SQL Server, and then click SQL Server Management Studio.
  3. Connect to an instance of SQL Server.
  4. Click Security, right-click Logins, and then click New Login.
  5. In the Login name box, enter the user name.
  6. In the Select a page pane, click Server Roles, select the sysadmin check box, and then click OK.

To add a Windows user that has the login “domainname \username” to the sysadmin fixed server role

  1. Log on to the computer using the credentials for the domainname\username account.
  2. Click the Start button, point to All Programs, click Microsoft SQL Server, right-click SQL Server Management Studio, and then click Run as administrator.

    ps: “Run As Administrator” option elevates the user permissions In the User Access Control dialog box, click Continue.

  3. In SQL Server Management Studio, connect to an instance of SQL Server.
  4. Click Security, right-click Logins, and then click New Login.
  5. In the Login name box, enter the user name.
  6. In the Select a page pane, click Server Roles, select the sysadmin check box, and then click OK.

Click Start --> All Programs --> SQL Server Management Studio Express

SQL Server Management Studio Express---> Right Click--->Run as Administrator--> Click Yes

It works

0

you are probably running more than one user profile on your laptop. While opening the program, right click and run as administrator

try this: SqlSever>>Security>>Logins>>BUILTIN\Users rightClick -->Properties -->Server Roles ...select sysadimn

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like