Quote:
|
Originally Posted by r937
...but if microsoft advocates prefixes like that on your tables, then you'd better do it
|
The list of stored procedures above is not my list, it's Microsoft's.
AFAIK, they don't advocate any particular naming convention for your own database objects.
Quote:
|
Originally Posted by blindman
"...inject the schema into an arbitrary database..."? I'm afraid I can't parse that syntax.
|
What I meant about injecting the schema, is that you can run a command line tool, aspnet_regsql.exe, with a database name as an argument and it will insert tables and stored procedures dealing with Membership, Users, and Roles into that database. I was using the word schema to refer to the database structure rather than the database construct used to create a namespace. As to why they chose to use a prefix as opposed to an actual schema, I don't know, I'm guessing because SQL Server 2000 doesn't support true schemas?
In any case, you can pretty much ignore the "aspnet" prefix part because it's not important to my question.