2
Answers

ASP.NET membership provider export and import

Photo of Sri

Sri

14y
3.2k
1
My application uses ASP.NET membership provider. It connects to an Oracle database where it hosts the membership schema.

I have a need to move existing production users on orable db1 to oracle db 2 which will host the same aspnet membership schema. How would I achieve this?

What would be a better solution? Database or C# code? Or, are there any tools that already do this job of exporting asp.net membership schema and data to the new database?

Answers (2)

0
Photo of Joginder Banger
NA 10k 490.8k 10y
first of all make a store procedure well format. if you want debug the store procedure then just select the store procedure like this way.


create proc procedureName
()
as 
begin


end


if you want debug any store procedure select the procedureName and press the CTRL+F5. your studio convert to in debug. 
0
Photo of Manish Kumar Choudhary
NA 14.3k 2.2m 10y