zoukankan      html  css  js  c++  java
  • 『ORACLE』 DBLINK(11g)

    使用tnsnames.ora

    SQL> grant create database link to scott;

    Grant succeeded.

    SQL> conn scott/tiger
    Connected.

    SQL> create database link lk connect to hr identified by hr using 'enmo1';

    Database link created.

    SQL> select * from tab@lk;

    TNAME TABTYPE CLUSTERID
    ------------------------------ ------- ----------
    COUNTRIES TABLE
    DEPARTMENTS TABLE
    EMPLOYEES TABLE
    EMP_DETAILS_VIEW VIEW
    EMP_SAL_CHANGE TABLE
    JOBS TABLE
    JOB_HISTORY TABLE
    LOCATIONS TABLE
    REGIONS TABLE
    SP_LOGERR TABLE

    10 rows selected.

    SQL> conn hr/hr
    Connected.
    SQL> select * from tab;

    TNAME TABTYPE CLUSTERID
    ------------------------------ ------- ----------
    COUNTRIES TABLE
    DEPARTMENTS TABLE
    EMPLOYEES TABLE
    EMP_DETAILS_VIEW VIEW
    EMP_SAL_CHANGE TABLE
    JOBS TABLE
    JOB_HISTORY TABLE
    LOCATIONS TABLE
    REGIONS TABLE
    SP_LOGERR TABLE

    10 rows selected.

    使用easy connect

    SQL> create database link d_1 connect to scott identified by tiger using'192.0.2.5:1521/enmo1';

    Database link created.

    SQL> select * from tab@d_1;

    TNAME TABTYPE CLUSTERID
    ------------------------------ ------- ----------
    BONUS TABLE
    DEPT TABLE
    EMP TABLE
    SALGRADE TABLE

    SQL> conn scott/tiger
    Connected.
    SQL> select * from tab;

    TNAME TABTYPE CLUSTERID
    ------------------------------ ------- ----------
    BONUS TABLE
    DEPT TABLE
    EMP TABLE
    SALGRADE TABLE

  • 相关阅读:
    Unity4.5版本DLL库名字问题
    Unity路径规划
    Unity 父物体与子物体位置
    Moving in Unity
    C# Xml文件操作,解释见注释
    发个招聘信息
    Unity 视频播放杂谈
    unity中Debug输出控制
    编写可读代码艺术之表面层析
    匈牙利命名法,骆驼命名法(camel),帕斯卡(Pascal)命名法(转)
  • 原文地址:https://www.cnblogs.com/KT-melvin/p/6900799.html
Copyright © 2011-2022 走看看