How can I list all users which can connect to my sql server database? Now able to find any sql command. I tried few links available on the internet but none of them worked.
Some commands that I tried
SELECT * FROM sys.sql_logins;
SELECT * FROM sys.sysusers;
select * from sys.sysusers
SELECT [name], [sid]
FROM [sys].[database_principals]
WHERE [type_desc] = 'SQL_USER'
I also looked in azure portal but did not find any users information.
I am able to connect to sql database which connection string where I am providing userid and password. Now I am not able to find that userid in sql server.
connection string looks like
value="Server=server,1433;Initial Catalog=DB1;Persist Security Info=False;User ID=user1;Password=pass1;Encrypt=True;Connection Timeout=30;"