当前位置:  数据库>oracle

Oracle access MySql via unixODBC by DBLINK

    来源: 互联网  发布时间:2017-05-19

    本文导语: 原来公司的同事询问了一个问题: 我问一下Oracle连接远程mysql的方法 我之前用hsodbc 但是不能显示不同属性的字段 oracle好像也没for mysql的透明网关  请问有什么方法能远程获取mysql的数据? 我oracle专门做分析的 会调用mysql的数...

原来公司的同事询问了一个问题:
 我问一下Oracle连接远程mysql的方法 我之前用hsodbc 但是不能显示不同属性的字段
oracle好像也没for mysql的透明网关  请问有什么方法能远程获取mysql的数据? 我oracle专门做分析的 会调用mysql的数据 所以就要获取mysql的数据 又不想做同步
 ------------、
 
介个你懂吗


对MySql了解仅限于通用的SQL语句,其他完全不懂;但是我知道至少有超过2中以上的办法来实现这个需求。
 他这里应该是借助unixODBC来访问MySql的数据,以下是测试过程。
 环境:
 MySql5.6 For Windows2003
 Oracle10G For CentOS5.7
 
0. MySql安装部署数据准备
 MySql在windows2003上的安装部署非常简单,简单的一步一步next就好了,这里略过,我们将创建一个数据库用户gtlions,创建一个表access_by_oracle并插入几条测试数据。
 C:Documents and SettingsAdministrator>mysql -u root -p
 Enter password: ******
 Welcome to the MySQL monitor.  Commands end with ; or g.
 Your MySQL connection id is 2
 Server version: 5.6.10-log MySQL Community Server (GPL)
 
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
 
Oracle is a registered trademark of Oracle Corporation and/or its
 affiliates. Other names may be trademarks of their respective
 owners.
 
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
 
mysql> help
 
For information about MySQL products and services, visit:
    http://www.mysql.com/
 For developer information, including the MySQL Reference Manual, visit:
    http://dev.mysql.com/
 To buy MySQL Enterprise support, training, or other products, visit:
    https://shop.mysql.com/
 
List of all MySQL commands:
 Note that all text commands must be first on line and end with ';'
 ?        (?) Synonym for `help'.
 clear    (c) Clear the current input statement.
 connect  (r) Reconnect to the server. Optional arguments are db and host.
 delimiter (d) Set statement delimiter.
 ego      (G) Send command to mysql server, display result vertically.
 exit      (q) Exit mysql. Same as quit.
 go        (g) Send command to mysql server.
 help      (h) Display this help.
 notee    (t) Don't write into outfile.
 print    (p) Print current command.
 prompt    (R) Change your mysql prompt.
 quit      (q) Quit mysql.
 rehash    (#) Rebuild completion hash.
 source    (.) Execute an SQL script file. Takes a file name as an argument.
 status    (s) Get status information from the server.
 tee      (T) Set outfile [to_outfile]. Append everything into given outfile.
 use      (u) Use another database. Takes database name as argument.
 charset  (C) Switch to another charset. Might be needed for processing binlog
 with multi-byte charsets.
 warnings  (W) Show warnings after every statement.
 nowarning (w) Don't show warnings after every statement.
 
For server side help, type 'help contents'
 mysql> CREATE USER 'gtlions'@'%' IDENTIFIED BY '000000';
 ERROR 1396 (HY000): Operation CREATE USER failed for 'gtlions'@'%'
 mysql> CREATE USER 'gtlions' IDENTIFIED BY '000000';
 Query OK, 0 rows affected (0.00 sec)
 
mysql> GRANT USAGE ON * . * TO 'gtlions' IDENTIFIED BY '000000' WITH MAX_QUERIES
 _PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIO
 NS 0 ;
 Query OK, 0 rows affected (0.00 sec)
 
mysql> CREATE DATABASE IF NOT EXISTS `gtlions` ;
 Query OK, 1 row affected (0.00 sec)
 
mysql> GRANT ALL PRIVILEGES ON `gtlions` . * TO 'gtlions';
 Query OK, 0 rows affected (0.00 sec)
 
mysql>exit
 Bye
 C:Documents and SettingsAdministrator>mysql -u gtlions -p
 Enter password: ******
 Welcome to the MySQL monitor.  Commands end with ; or g.
 Your MySQL connection id is 22
 Server version: 5.6.10-log MySQL Community Server (GPL)
 
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
 
Oracle is a registered trademark of Oracle Corporation and/or its
 affiliates. Other names may be trademarks of their respective
 owners.
 
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
 
mysql> use gtlions
 Database changed
 mysql> create table access_by_oracle(id int(5),name char(20));
 Query OK, 0 rows affected (0.09 sec)
 
mysql> insert into access_by_oracle values(1,'gtlions');
 Query OK, 1 row affected (0.00 sec)
 
mysql> insert into access_by_oracle values(2,'laidye');
 Query OK, 1 row affected (0.00 sec)
 
mysql> select * from access_by_oracle;
 +------+---------+
 | id  | name    |
 +------+---------+
 |    1 | gtlions |
 |    2 | laidye  |
 +------+---------+
 2 rows in set (0.00 sec)
 
mysql>


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Oracle 12c发布简单介绍及官方下载地址
  • 在linux下安装oracle,如何设置让oracle自动启动!也就是让oracle那个服务自动启动,不是手动的
  • oracle 11g最新版官方下载地址
  • 请问su oracle 和su - oracle有什么不同?
  • Oracle 数据库(oracle Database)Select 多表关联查询方式
  • 虚拟机装Oracle R12与Oracle10g
  • Oracle数据库(Oracle Database)体系结构及基本组成介绍
  • Oracle 数据库开发工具 Oracle SQL Developer
  • 如何设置让Oracle SQL Developer显示的时间包含时分秒
  • Oracle EBS R12 支持 Oracle Database 11g
  • Oracle 10g和Oracle 11g网格技术介绍
  • SCO unix下安装oracle,但没有光盘,请大家推荐一个oracle下载站点(unix版本的)。谢谢!!!!
  • oracle中如何把表中具有相同值列的多行数据合并成一行
  • 请问大家用oracle数据库, 用import oracle.*;下的东西么? 还是用标准库?
  • Oracle 数据库(oracle Database)性能调优技术详解
  • Linux /$ORACLE_HOME $ORACLE_HOME
  • ORACLE日期相关操作
  • Linux系统下Oracle的启动与Oracle监听的启动
  • ORACLE数据库常用字段数据类型介绍
  • 请问在solaris下安装ORACLE,用root用户和用oracle用户安装有什么区别么?
  • Oracle 12c的九大最新技术特性介绍
  • 网间Oracle的连接,远程连接Oracle服务器??


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,