I am brand new to Microsoft SQL Server. I have some experience with MySQL, and there you have a user with privileges, if I understand things correctly; these privileges determine which databases you have access to on the MySQL server.
However, now I am in a situation where I need to restore a database on my SQL Server 2005 Express, and this database has its own users and user password. Therefore, if I want these users to be accessible externally (so that they can connect to my server), how would I do this?
To illustrate clearer; let's say there are two accounts on the database server "Mike" and "John", and in the database "Animals" there are two users; Chris and Jeff.
I need Jeff to be able to log in to access the database. Is there a good way to do this without creating new users / logins? And if not, what is the best / most common solution?
I would really appreciate a helpful contribution to this!
source share