Message states the file is locked or in use when you try to open a project in Project (302937)
The information in this article applies to:
- Microsoft Project 2000
- Microsoft Project Server 2002
- Microsoft Office Project Server 2003
- Microsoft Office Project Standard 2003
- Microsoft Office Project Professional 2003
This article was previously published under Q302937 SYMPTOMS When you attempt to open a project, you may receive a
message similar to the following: The project is
currently locked and cannot be opened. Either another user is saving or
opening the project, or the user has it locked for exclusive use. Try again
later. As a result, you cannot open the project. CAUSE This behavior can occur if you work with a project that is
stored in a database. If some fields in the MSP_PROJECTS table contain
incorrect values, this can cause the file to be locked. RESOLUTION To resolve this issue, you must unlock the file. To do
this, edit the values in the MSP_PROJECTS table by following these steps:
- To view the tables, open the database that contains the
project.
- Set the values in the MSP_PROJECTS table to the following:
PROJ_READ_ONLY = '0' PROJ_READ_WRITE = '0' PROJ_READ_COUNT = '0' PROJ_LOCKED = '0' PROJ_MACHINE_ID = null PROJ_EXT_EDITED = '1' - Close the database.
If you use Microsoft SQL Server to store the project database,
you can modify the following SQL update statement and then use it to unlock the
project:
Update MSP_PROJECTS
Set PROJ_READ_ONLY = '0',
PROJ_READ_WRITE = '0',
PROJ_READ_COUNT = '0',
PROJ_LOCKED = '0',
PROJ_MACHINE_ID = null,
PROJ_EXT_EDITED = '1',
Where PROJ_ID = <YourProjID>
Note The placeholder < YourProjID> represents your Project ID.
Modification Type: | Minor | Last Reviewed: | 2/7/2006 |
---|
Keywords: | kbprb KB302937 |
---|
|