M matjcb Oct 8, 2008 #1 I have a database that is linked to another database table. Is there a way to make this link a read only?
I have a database that is linked to another database table. Is there a way to make this link a read only?
D Douglas J. Steele Oct 8, 2008 #2 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
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