zoukankan      html  css  js  c++  java
  • dblink creation

    在想要使用dlink的数据库上执行,下面为目标库的一些配置信息
     
     create database link d_erp  (dlink名称)
      connect to userName(目标用户名) identified by password(目标库密码)    using '
          (DESCRIPTION =
              (ADDRESS_LIST =
                  (ADDRESS =
                     (PROTOCOL = TCP)
                     (HOST = 192.168.1.100)  --目标库地址
                     (PORT = 1521)) )
                  (CONNECT_DATA =
                      (SERVICE_NAME = orcl)  -- orcl 为目标库sid
             ) )';
    ————————————————

    local to the hr schema on the local database:
     
    CREATE DATABASE LINK local
       CONNECT TO hr IDENTIFIED BY hr
       USING 'local';
     
    After this database link is created, hr can query tables in the schema hr on the local database in this manner:
     
    SELECT * FROM employees@local;
     
    User hr can also use DML statements to modify data on the local database:
     
    INSERT INTO employees@local
       (employee_id, last_name, email, hire_date, job_id)
       VALUES (999, 'Claus', 'sclaus@oracle.com', SYSDATE, 'SH_CLERK');
     
    UPDATE jobs@local SET min_salary = 3000
       WHERE job_id = 'SH_CLERK';
     
    DELETE FROM employees@local
       WHERE employee_id = 999;
     
    Using this fixed database link, user hr on the remote database can also access tables owned by other users on the same database. This statement assumes that user hr has SELECT privileges on the oe.customers table. The statement connects to the user hr on the local database and then queries the oe.customers table:
     
    SELECT * FROM oe.customers@local;
     
    Defining a CURRENT_USER Database Link: Example The following statement defines a current-user database link to the remote database, using the entire service name as the link name:
     
    CREATE DATABASE LINK remote.us.oracle.com
       CONNECT TO CURRENT_USER
       USING 'remote';
    ————————————————
    版权声明:本文为CSDN博主「arthur.dy.lee」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/paincupid/article/details/9005673
    版权声明:本文为CSDN博主「arthur.dy.lee」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/paincupid/article/details/9005673

  • 相关阅读:
    java读写文件
    idea文件全部变红, 文件全部红色
    PowerDesigner连接MySQL数据库
    mysql 使用ip地址连接不上;MySQL 可以用localhost 连接,但不能用IP连接的问题,局域网192.168.*.* 无法连接mysql
    powerdesigner连接MySQL数据库时出现Non SQL Error : Could not load class com.mysql.jdbc.Driver
    JSP的九大对象和四大作用域
    C#面试问题及答案
    数据库面试题及答案
    多态的深入理解
    面向对象编程----继承---笔记
  • 原文地址:https://www.cnblogs.com/yaoyangding/p/12809866.html
Copyright © 2011-2022 走看看