Create an account

  • I want to create an account in SQL Server and I should grant it read only privileges to my original database only. How should I do this

  • First you need to create a login on the server level (in the security node) and map this to a user on the database level.

    Then you assign this user to the db_datareader database role.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • Create new SQL Server Login and map that login to your required database.

    After mapping you need to assign db_datareader role to user.

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

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