Operating System Error 170 (Requested Resource is in use)

This article, discusses how you can resolve the error you might get in SQL Server: Operating System Error 170(Requested Resource is in use)

The Root Cause for the Error Message

It might happen at some point, under certain circumstances, to get the “Operating System Error 170” error message on your SQL Server environment.

The above error means that some other process put a lock on a database file (or other related SQL Server files as well, i.e. log files, etc.) and SQL Server cannot access it in order to write in it. This is an unpleasant situation because many times, at a first look, you don’t identify something wrong but the problem persists!

So, what you can do? You have a situation where SQL Server reports as a critical error that it cannot write on one or more of its hosted databases.

You hope that you can resolve this issue fast and without any downtime.

It did happen to me in the past as well, so I would like to share some tips with you, which you might find useful for resolving this issue.

 

How to Resolve the Requested Resource is in Use Error

Here’s what you can try for resolving the error:

– Check via Windows Resource Monitor – overview – disk activity to see if any database/log files are used by any other activity than SQL Server
– Use Sysinternals “Handle” tool to see if there are any other handles on the file rather than SQL Server itself
– Check if antivirus is using the specific file thus keeping it locked

Example of using Handle.exe:

Investigating the error message: Operating System Error 170(Requested Resource is in use) using SysInternals Tools

Hope this helps!

 


Strengthen your SQL Server Administration Skills – Enroll to our Online Course!

Check our online course on Udemy titled “Essential SQL Server Administration Tips
(special limited-time discount included in link).

Via the course, you will learn essential hands-on SQL Server Administration tips on SQL Server maintenance, security, performance, integration, error handling and more. Many live demonstrations and downloadable resources included!

Essential SQL Server Administration Tips - Online Course with Live Demonstrations and Hands-on Guides
Lifetime Access / Live Demos / Downloadable Resources and more!

Learn More


Featured Online Courses:

 

Read Also:

Here are some other SQL Server troubleshooting articles which you can check out for finding solutions to related technical issues you might encounter:

 

Rate this article: 1 Star2 Stars3 Stars4 Stars5 Stars (3 votes, average: 5.00 out of 5)

Loading...

Reference: SQLNetHub (https://www.sqlnethub.com)

© SQLNetHub