Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

aspnet tables in sql 2000 1

Status
Not open for further replies.

shams123

Programmer
Jan 27, 2006
81
MY
Hi,

I am using membership profile in asp.net and pointing to sql server 2000. I can see the aspnet generated tables storing this data. However, if I need to add more columns to a user, how can I do this in the aspnet table?

Thanks!
 
i would not suggest doing that, cause there might be unknown repurcursions.
create another table and link it to the aspnet table (PK|FK), read from this table...

Known is handfull, Unknown is worldfull
 
Hi, thanks for that. In this case can we programmatically insert into the aspnet membership table? since I'll need the primary key for that customer for this new table.

Thanks
 
>>In this case can we programmatically insert into the aspnet membership table

your customers are already members right???

Known is handfull, Unknown is worldfull
 
The membership tables are sql tables and nothing more. You can do any operation on them as you would any other table.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top