EnterpriseDB
  • Home
  • Category
    Installation & Getting Started Quick Start Reference User Guides
  • Product
    EDB Backup and Recovery Tool EDB JDBC Connector EDB .NET Connector EDB OCL Connector EDB ODBC Connector EDB*Plus EDB Postgres Advanced Server EDB Postgres Ark Platform EDB Postgres Cloud Database Service EDB Postgres Enterprise Manager EDB Postgres Failover Manager EDB Postgres Hadoop Foreign Data Wrapper EDB Postgres Language Pack EDB Postgres Migration Portal EDB Postgres Migration Toolkit EDB Postgres MongoDB Foreign Data Wrapper EDB Postgres MySQL Foreign Data Wrapper EDB Postgres PgBouncer EDB Postgres Pgpool-II EDB Postgres PostGIS EDB Postgres Replication Server EDB Postgres Slony Replication PostgreSQL pgAdmin 4

EDB Postgres Advanced Server → 10 → Reference → Database Compatibility for Oracle® Developers Reference Guide
Other versions of this page: 12 · 11 · 10 · 9.6

Get Postgres Tips and Tricks

Subscribe to get advanced Postgres how-tos.

Table of Contents Previous Next


2 The SQL Language : 2.3 SQL Commands : 2.3.42 DROP DATABASE LINK

 
2.3.42 DROP DATABASE LINK
Name
DROP DATABASE LINK -- remove a database link
Synopsis
DROP [ PUBLIC ] DATABASE LINK name
Description
DROP DATABASE LINK drops existing database links. To execute this command you must be a superuser or the owner of the database link.
Parameters
name
The name of a database link to be removed.
PUBLIC
Indicates that name is a public database link.
Examples
Remove the public database link named, oralink:
DROP PUBLIC DATABASE LINK oralink;
Remove the private database link named, edblink:
DROP DATABASE LINK edblink;
See Also
CREATE DATABASE LINK

2 The SQL Language : 2.3 SQL Commands : 2.3.42 DROP DATABASE LINK

Table of Contents Previous Next
© 2021 EnterpriseDB Corporation. All rights reserved. | Privacy Policy | Terms of Use | Trademarks