Please help me

Description of your first forum.
Post Reply
zacharywhite768
Posts: 4
Joined: Wed Jan 21, 2015 4:37 pm

Please help me

Post by zacharywhite768 » Fri Apr 03, 2015 2:37 pm

Hello all,
How do I unlock an Access Database?

genesisadams936
Posts: 5
Joined: Thu Jan 22, 2015 4:19 pm

Re: Please help me

Post by genesisadams936 » Tue Apr 07, 2015 9:54 am

Is it an MDB file or an MDE file?

clarke578
Posts: 9
Joined: Thu Jan 22, 2015 3:58 pm

Re: Please help me

Post by clarke578 » Thu Apr 09, 2015 10:17 am

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>

Post Reply