locked tables

R

rafik

I have a database split in BE & FE. when any user open the FE they lock the
tables in the BE. This does not allow me to run the code to delete and
recreate the tables by create table Query.
My question is:
1- Is there a way to not allow any user to lock the BE tables used in the FE
forms?
2- If not 1 then can you show me the code to tell me who has the BE Locked?

Thank you
 
R

rafik

Thank you for your help
Delete and insert records would work ecxept the table I'm Trying to update
is created with a union Query. is there a way to create an insert record with
a union query

strSQL = "INSERT INTO TableC (Field1, Field2" & _
"SELECT Field1, Field2 FROM TableA " & _
"union select Field1, Field2 FROM tableB"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top