2

When i used aspnet_regsql tool on my mdf file it created by two copies of some tables. For example UsersInRoles and aspnet_UsersInRoles, Users and aspnet_Users. What does it mean?

1

1 Answer 1

0

The aspnet_regsql tool is used to create an application services database. In this database it will create memebership tables like the ones you mentioned in your question. It is used to store users and user roles, etc, that can be used with the asp.net memebership functionality. Please see:

http://msdn.microsoft.com/en-us/library/yh26yfzy(v=vs.100).aspx

Kleinkie provided a good link too.

You said it copied two copies of some tables, did you mean two tables with identical names under different schemas? I wasnt aware this was possible with aspnet_regsql.

It is best to utalise these tables with the asp.net memebership modules.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.