An Azure relational database service.
Hello vmhatup
Typically, the service administrator can use the following steps to add the login credentials:
Log in to the server by using SQL Server Management Studio (SSMS).
- To check whether the login name is disabled, run the following SQL query in the
masterdatabase:SELECT name, is_disabled FROM sys.sql_logins; - If the corresponding name is disabled, you might decide to enable it by using the following statement:
ALTER LOGIN <User name> ENABLE; - If the SQL login user name doesn't exist, edit and run the following SQL query to create a new SQL login:
CREATE LOGIN <SQL_login_name, sysname, login_name> WITH PASSWORD = '<password, sysname, Change_Password>'; GO - In SSMS Object Explorer, expand Databases.
- Select the database that you want to grant the user permission to.
- Right-click Security, and then select New, User.
Also, please share the details requested in the private message.