Skip to content

Instantly share code, notes, and snippets.

@davidsteinberger
Created November 4, 2013 15:42
Show Gist options
  • Save davidsteinberger/7304482 to your computer and use it in GitHub Desktop.
Save davidsteinberger/7304482 to your computer and use it in GitHub Desktop.
Oracle: Create DB Link
create database link dblinkname
connect to gepsreadonly identified by gepsreadonly123
using
'(DESCRIPTION=
(ADDRESS=
(PROTOCOL=TCP)
(HOST=some.host.com)
(PORT=1565))
(CONNECT_DATA=
(SID=SID)))';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment