How can a allow other computers to access my SQL server

  • While trying to access the Lansync database from another computer, I received an error that stated "SQL Server Access Denied"

    How do I grant access?

  • Do you have your login created with specific server role granted? If no, create login onto that server and add yourself to a server/database role.

    SQL DBA.

  • What steps to i take to add a log in on the server?

    can I do that from my computer or do i need the administrator?

  • Use sp_grantlogin to allow a windows user to connect to SQL Server

    Use sp_addlogin to allow a SQL Server login to connect to SQL Server.

    a member of sysadmin and securityadmin fixed roles only can add a login to server.

    Check BOL for correct syntax.

    SQL DBA.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply