Reputation: 101
Is there a syntax to close a table link? In other words, what is the opposite of create linked table LocalTableToBe( className, url, userName, password, RemoteTableSource )
?
Upvotes: 1
Views: 42
Reputation: 8188
You can only drop these table links with the regular DROP TABLE
command:
DROP TABLE LocalTableToBe;
This command drops the specified link, the actual table in another database isn't affected by it.
Upvotes: 1