Table link read only?

  • Thread starter Thread starter matjcb
  • Start date Start date
M

matjcb

I have a database that is linked to another database table.
Is there a way to make this link a read only?
 
Rather than a linked table, consider having a linked query. If you use the
keyword DISTINCT in the query, it won't be updatable.

To create a query that's linked to another database, use SQL like:

SELECT DISTINCT Field1, Field2, Field3
FROM [;Database=E:\Folder\File.mdb].Table
 

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

Back
Top