Search code examples
sqlvisual-foxpro

File access is denied


I'm using SQL command within FoxPro 6.0 command window, and encountered the "File access is denied."

My SQL command is:

SELECT * FROM main.dbf WHERE Client = "ABC"

Situation:

  • Windows 7 Pro
  • FoxPro 6.0 main.dbf is shared to many users.
  • main.dbf is not hidden and is not write only

Any comments will be greatly appreciated!


Solution

  • Is this DBF file on a shared drive? If so, another user may have the file open Exclusive, or you are trying to open the file Exclusive. By default, Foxpro tries to open tables exclusively.

    In the command window or your program, issue these commands:

    SET EXCLUSIVE OFF
    USE main SHARED
    SELECT * FROM main WHERE Client = "ABC"
    

    If you still get the error, then you may want to download a tool that will show you a list of users that have the file open. Perhaps one of them have the DBF opened exclusive.