98-364 Exam QuestionsBrowse all questions from this exam

98-364 Exam - Question 10


You need to enable a new employee to authenticate to your database.

Which command should you use?

Show Answer
Correct Answer: B

To enable a new employee to authenticate to your database, you need to create a new user account for them. The correct SQL command for this purpose is 'CREATE USER'. This command defines a new user in the database system, allowing the new employee to log in and access the database as per the permissions granted.

Discussion

3 comments
Sign in to comment
jrn1992
Jun 1, 2020

The CREATE USER statement creates a database user to log into SQL Server. A database user is mapped to a Login, which is an identity used to connect to a SQL Server instance. CREATE USER user_name FOR LOGIN login_name;

syed5
Jul 9, 2020

CREATE USER: See: https://docs.microsoft.com/en-us/sql/t-sql/statements/create-user-transact-sql?view=sql-server-ver15

elkreationZ
Jun 25, 2021

B) CREATE USER