Skip to content
Advertisement

Get list of SQL server databases which files have been deleted

My goal is getting list of SQL server databases which files have been deleted. In other words. I attach a db from mount, then close the mount so actually I have the attached db without files.

At first it seemed to be easy. Just pretty easy select:

But it turned out differently. Sql server has almost the same information about a regular database and a database which doesn’t have files. So I had to try something else.

Further I tried to use state of database. And it was quite strange. Unfortunately the following query gives me wrong(or not actual information):

And 0 means ONLINE according to this link But actually the database has RECOVERY_PENDING state. It looks like that sql server information about my TestDB us out of date and should be refreshed. But I have no idea how to achieve this. But after executing any of following query this info(db state) is being refreshed:

So do you have any idea ? And also I’ve asked the question looks like this here differently.

Advertisement

Answer

Finally, I’ve found what i actually need. I can chech whether the specific file exists or not by sql server:

So i just need to execute the function above for each file which i can get by executing for example following query:

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement