The user name is stored in the security mdw file. It has no connection to
stored data. Create the new user names, then have the users log in using
the new names. They will see the same data they saw with the old user name.
> Yes, I do have workgroup-level security...sorry about that.
>
[quoted text clipped - 16 lines]
>
> Thanks for your help
Not exactly. I'm reading that erick is storing the username with the data that 'belongs' to that user.
So you'll need to delete all the users (no you can't change the existing usernames), recreate them, and then run a bunch of update queries to update the existing data to the new username. At least, I think that's the best way.

Signature
Joan Wild
Microsoft Access MVP
> The user name is stored in the security mdw file. It has no connection to
> stored data. Create the new user names, then have the users log in using
[quoted text clipped - 20 lines]
>>
>> Thanks for your help
BruceM - 14 Jan 2008 12:32 GMT
Oh, I see. I was reading it differently, but it's likely you're right. If
the new name is consistent with the example given it may be possible to use
a single query, with something like:
ShortName: Left([NameField],1) & _
Right([NameField],Len([NameField]-InStr([NameField]," "))
Even if it doesn't work in every case, it should do a lot of the work.
Not exactly. I'm reading that erick is storing the username with the data
that 'belongs' to that user.
So you'll need to delete all the users (no you can't change the existing
usernames), recreate them, and then run a bunch of update queries to update
the existing data to the new username. At least, I think that's the best
way.

Signature
Joan Wild
Microsoft Access MVP
> The user name is stored in the security mdw file. It has no connection to
> stored data. Create the new user names, then have the users log in using
[quoted text clipped - 21 lines]
>>
>> Thanks for your help
erick-flores - 14 Jan 2008 16:12 GMT
Thanks for the help. I was trying to avoid deleting all the users and
re-create them, but I guess thats the only way. Thanks again.
Joan Wild - 14 Jan 2008 20:16 GMT
It's not the only way, but it is the best in the long term.
You could add a field to your employee table with the new username, keeping the old one as well. Then you'd need to change all your queries/forms to look up the new username as needed.

Signature
Joan Wild
Microsoft Access MVP
> Thanks for the help. I was trying to avoid deleting all the users and
> re-create them, but I guess thats the only way. Thanks again.
erick-flores - 15 Jan 2008 17:43 GMT
OK. I am not 100% sure when we are going to implement the new user
name. But I will look into that option if we do so. Thanks