Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What is the Difference Between Logins And Users???

Status
Not open for further replies.

Marjo

Technical User
Sep 4, 2002
22
0
0
SE
Hi there:
I am new to sql server. And want to know the difference between the sql server logins and users. Plz explain me in detail.
Thanx.
Marjo.
 
Hi Marjo

A user and a login is one and the same.

If you are using windows authentication then the user's nt account would be the login that you need to grant permissions to. In this case the user and login are the same.

If you had a sql login called 'Accounts', then multiple users could login as the 'accounts' user.
SQL Server thinks that the accounts login is a user regardless of the fact that there are many people logging in as that user.

If you look in Books Online under logins-sql server, there is atleast 30 sub topics that should explain it in a lot more detail.

John

PS...welcome to the SQL Server World :)
 
Hi There

A login allows a user to connect to the SQL Server it DOES NOT allow the users permissions to any of the databases.

The logins is then mapped to a User. The user can then access the database you give them permissions to. If you want the user to do anything with the database you must give them permissions, to select / insert / delete information from tables or views or execute permissions on the stored procs. You can add them to a role and give permissions to the role, any user you is added to the role, inherits the role's permissions (like groups in Windows NT).


Hope This Helps

Bernadette
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top