Page 1 of 1

Please help me

Posted: Fri Apr 03, 2015 2:37 pm
by zacharywhite768
Hello all,
How do I unlock an Access Database?

Re: Please help me

Posted: Tue Apr 07, 2015 9:54 am
by genesisadams936
Is it an MDB file or an MDE file?

Re: Please help me

Posted: Thu Apr 09, 2015 10:17 am
by clarke578
If it is MDB file then overwrite an active database with a new .MDB file.

There are way to unlock your database:

1.Run a Bad Query
Some database locks are broken by a bad query. For example, the following code snippet may unlock your database file:

<cfquery name="UnlockDB"
datasource="MyDSN">
SELECT *
FROM NoSuchTable
</cfquery>