To connect to your Microsoft SQL Server, you will need a valid SQL login and password. Here are the steps to find them:
- Open SQL Server Management Studio (SSMS) on your computer.
- In the Connect to Server or Connect to Database Engine dialog box, edit the Server name value. Enter the IP address or full DNS name of the SQL Server.
- In the Authentication box, select SQL Server Authentication.
- In the Login box, you should see a list of valid SQL logins. If you don't see any, you will need to create a new SQL login.
- If you need to create a new SQL login, follow the steps in this Azure documentation.
- Once you have a valid SQL login, you can use it to connect to your Microsoft SQL Server. In the Login box, type the name of the SQL login. In the Password box, type the password of the login.
If SQL authentication is already enabled, your admin should have the password; there is no way to retrieve it from SQL Server. Otherwise, you may need to reset the password and use in connection string.
I hope this helps! Let me know if you have any further questions. Thank you!