Hi I have a statement where I add users to the DB as follows:INSERT INTO USERS (UserName, FullName) VALUES ('username', 'Full Name') INSERT INTO UsersGroups (UserName, [Group]) VALUES ('username', 'group1')GOAnd I then have to go into the DB under logins, create the new login and add the password through sql server authentication, then assign them to the particular DB. Is there a way I can do this all in one, especially as I am going to be adding a lot of users and do not want to have to keep going in and manually typing in the details for each user?ThanksG