Access 97

T

ttbabe

I have a linked table on a database that someone else created. How do I
remove the link without loosing the table?
 
D

Douglas J. Steele

Linked tables are strictly pointers to the real table. If you remove the
link, the table ceases to exist in your database, as it doesn't know where
to get the data from.

If you're saying that you want the data in your database, rather than linked
to the other database, import the table rather than link it.
 
Top