Trying to detach attach database - can not acces db after?

Secondly, have you looked at the SQL Management Objects (SMO) - here is an example for the detach/attach. Thridly, you do not have to detach the database when you just want to make a backup copy, you can set it offline instead. Using SMO or using SQL (sp_dboption doc).

It sounds like it could be related to trying to use a connection which is no longer valid, due to connection pooling. You could try turning off connection pooling to see if that is the problem. To do this, add "Pooling=false" to your SQL connection string in your configuration file.

Pooling=false did not change the behaviour – Malcolm Frexner Mar 23 '10 at 18:29.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions