In: Computer Science
Developer User Account
Create a user account using T-SQL for developers named DEVELOPER
with the password TESTACCOUNT that grants the user the ability
to:
Select and modify any table.
Connect to and have access to all resources.
In SSMS
T-SQL
Syntax for creating User is
CREATE USER <User_name> WITH PASSWORD = 'password'
So to create a user account using T-SQL for developers named DEVELOPER with the password TESTACCOUNT, command is
CREATE USER DEVELOPER WITH PASSWORD = 'TESTACCOUNT '
To grant the user the ability to: Select and modify any table.
Use <databasename>
GO
GRANT SELECT, UPDATE on <databasename> to <username>
Assuming DBO is database name
Use DBO
GO
GRANT SELECT, UPDATE on DBO to DEVELOPER
Connect to and have access to all resources in SSMS.
In order to have access to all resources account should be Local system account which is administrative privilege account that has access to all resources in server
So first step to create a user with Local system account.
Steps to connect are: