aspnet_wp.exe stopped unexpectedly

  • Thread starter Thread starter Ganesh Ramamurthy
  • Start date Start date
G

Ganesh Ramamurthy

I get the above message when run the dll in release mode. However, it
doesnt come when compiled in the debug mode. Is the error due to some
stack overflow??

I get this error when trying to execute the database.transfer method
of the SQLDMO.
Can anyone tell a good solution to this problem??

try
{

WriteLogFile ("Begin transfer Functions");
database.Transfer(transfer); // error comes here.
WriteLogFile ("End transfer Functions");
}
catch(Exception Ex)
{
WriteLogFile(Ex.Message);
}

the execution terminates when the database.Transfer method is invoked.
However no exception is catched.

Regards
Ganesh
 
I use SQL DMO to transfer the views, SP's and functions from one database to another. However the Transfer method of the SQLDMO.Database2 fails and the process is removed from memory. However no Exception is thrown. I get an error in the windows error log aspnet_wp.exe stopped unxepectedly.

Can anyone suggest a better method for synchronizing the database objects or a possible solution to this problem

----- Ganesh Ramamurthy wrote: -----

I get the above message when run the dll in release mode. However, it
doesnt come when compiled in the debug mode. Is the error due to some
stack overflow??

I get this error when trying to execute the database.transfer method
of the SQLDMO.
Can anyone tell a good solution to this problem??

try
{

WriteLogFile ("Begin transfer Functions");
database.Transfer(transfer); // error comes here.
WriteLogFile ("End transfer Functions");
}
catch(Exception Ex)
{
WriteLogFile(Ex.Message);
}

the execution terminates when the database.Transfer method is invoked.
However no exception is catched.

Regards
Ganesh
 
Back
Top