Read only - linked table

G

Guest

Hi
Huge thanks to anyone who can help.

Is it possible to make a linked table "read-only"?

So that when you go in the original table it is ok and you can make changes,
but when you access the table via a link it is read only?

Cheers
Dejaqhsa
 
R

Rick Brandt

dejaqhsa said:
Hi
Huge thanks to anyone who can help.

Is it possible to make a linked table "read-only"?

So that when you go in the original table it is ok and you can make
changes, but when you access the table via a link it is read only?

Cheers
Dejaqhsa

You could create a query that pulls in the data from the table instead of
using a link. Then you can make the query read only by setting the
RecordSetType to Snapshot. You would use the IN clause to reference the
remote table...

SELECT * FROM TableName IN 'Path to other MDB File'
 
P

Pieter Wijnen

yes, via tools / security / user & Groups permissions

Pieter

dejaqhsa said:
Hi
Huge thanks to anyone who can help.

Is it possible to make a linked table "read-only"?

So that when you go in the original table it is ok and you can make
changes,
but when you access the table via a link it is read only?

Cheers
Dejaqhsa



--
 

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