首页 Soft PlugIn RAN乱 Dev开发 Info资料 English WAP 留言 登陆 注册
-
Posted by Yippee | 评论(0) | 引用(0) | 阅读98次
20080415 oracle 异构 2

20080415 oracle 异构 2
http://www.shengfang.org

Operating System Authentication
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If the connection to the instance is local or 'secure' then it is possible to
use the operating system to determine if a user is allowed SYSDBA or SYSOPER
access.
In this case no password is required.
The syntax to connect using operating system authentication is:

CONNECT / AS SYSDBA
  or
CONNECT / AS SYSOPER

http://www.cn-doc.com/_soft_dot_net_tech_info/2006_02_23_16/20060223163409196.htm
用C#通过DatabaseLink连接远程Oracle数据表的错误,及其变通方法[1]

http://hi.baidu.com/yuzhenger/blog/item/4219d7f2899e6511b07ec588.html
转:TNS常见错误解决办法

http://www.hackhome.com/InfoView/Article_166357.html
关于分布式oracle中database link一点经验

http://www.cn-doc.com/_soft_dot_net_tech_info/2006_02_23_16/20060223163409196.htm
用C#通过DatabaseLink连接远程Oracle数据表的错误,及其变通方法[1]

http://psoug.org/reference/db_link.html
Oracle Database Links

http://www.ixdba.net/article/be/233.html
连接数据库一定要配置tnsnames.ora文件吗?

创建oracle DataBase Link
BY - ecreate

创建oracle DataBase Link

 注意要在服务器上创建,在客户端的sqlplus创建的不能用
CREATE PUBLIC DATABASE LINK "LINK_BILL"  CONNECT TO "USER_name"
    IDENTIFIED BY "pwd"
    USING 'tnsname'

create public database link link1.US.ORACLE.COM
connect to user_name
identified by "pwd"
using 'tnsname';

怎麼樣建立Oracle Database Link
http://blog.chinaunix.net/u/1751/showart_255620.html

http://hi.baidu.com/675604/blog/item/9bdea41b4fb1a4188718bfcb.html
oracle DATABASE LINK (dblink)应用

http://www.dedecms.com/web-art/shujuku/Oracle/20061007/37250.html
分布式Oracle的database link

http://www.oracle-bbs.com/oracle_forum_%E5%AE%89%E8%A3%85%E4%BA%86db2_%E4%BC%81%E4%B8%9A%E7%89%81%7F%E7%89%88_-sql-database-0-590770.html
安装了db2_企业版9.1版_

http://www.mscenter.edu.cn/blog/lunar_solar/archive/2006/01/10/8081.html
今天在删除了之前创建的数据库表source、sample、target之后,重新创建的时候出现了问题。

如果要察看服务名和端口,在clp中使用db2   get   dbm   cfg,你用的肯定是tcpip,察看svcename的值,如果是数字,那就是端口好。如果是一个服务名,那就到\winnt\system32\drivers\etc下的services来察看对应的端口。

http://blog.sina.com.cn/u/44167401010009hx
DB2数据库Q&A

http://www.itpub.net/107928.html
db2开发(有关DSN的问题)

http://it.sohu.com/12/58/article15395812.shtml
FrontPage 2000+DB2实现数据库信息发布

http://blog.oracle.com.cn/html/34/t-127034.html
oracle于db2之间通过odbc相连接,配置问题

http://www.cnblogs.com/hermes262/archive/2006/12/15/592983.html
IBM DB2数据库使用经验小结

http://www.linux-cn.com/html/program/ASP/20070423/11764.html
 FrontPage 2000+DB2实现数据库信息发布

 DB2数据库ODBC连接字符串
[C#]
OdbcConnection con = new OdbcConnection("DSN=sample;UID=userid;PWD=password;");
con.Open()

[C#]+[ODBC]
driver={ IBM DB2 ODBC DRIVER };Database=CBRC_SER;hostname=Server;port=50000;protocol=TCPIP; uid=db2admin; pwd=db2

BD2默认端口50000

怎样知道哪个DB2 server上端口是有效的?
1. Open "windows\system32\driver\etc\services".
2. Search for "DB2"
3. Get the port from the result like the following:
DB2c_DB2     50000/tcp

db2修改端口:
在/etc/services文件中有实例参数svcename对应的端口,你如果是50000的话,你也可以直接改成60000等,或者你直接在文件中加一行:db2cxlinst(这个名字随便你取)   50006,然后执行:
db2 update dbm cfg using svcename db2cxlinst
重起后就可以了。

http://zjhboy.bokee.com/2700239.html
Oracle与db2建立连接的步骤

在企業環境中,經常會存在多種數據庫. 如Oracle, MS SQLServer, MYSQL, DB2等.
就我工作的企業來說, 主要用的是Oracle Database. 同時還有MS SQL,Mysql .
在Oracle中有多種方法訪問異構平台的數據庫.
1. 使用Oracle的透明數據網關. 試用過Transparent gateway for mssql
2. 使用Oracle的通用數據網關. hsodbc, 可通過odbc訪問任何支持odbc訪問的數據庫.
    在使用中會有一些數據格式不支持.
     http://blog.chinaunix.net/u/1751/showart_255590.html
3. 使用外部過程.
    a. 使用Java , 可用loadjava 裝入mysql, mssql的jdbc Driver,
        再使用java procedure處理.      感覺比較方便.
    b. 使用c 過程實現, 比例復雜.
4. 還有一些數據交換方式. 如在別的機器導成文本,在Oracle中使用外部表等.

http://lcruiser.cnblogs.com/archive/2005/04/01/130324.html
通过数据链接(Database Link),从Oracle 9i 连接 SQL Server 2000(实例)

http://download-uk.oracle.com/docs/cd/B28359_01/gateways.111/b31043/cfg_drda.htm#i1006836
13 Configuring the DRDA Server

http://download-west.oracle.com/docs/cd/B19306_01/gateways.102/b16218/cfg_drda.htm#CIAGBEBJ
5 Configuring the DRDA Server

http://download-uk.oracle.com/docs/cd/B28359_01/gateways.111/b31043/cfg_gtwy.htm
14  Configuring Oracle Database Gateway for DRDA

http://download.oracle.com/docs/cd/B28359_01/gateways.111/b31042/configdrda_server.htm
13 Configuring the DRDA Server

http://download.oracle.com/docs/html/A90839_01/ch06.htm#3208
 Configuring the DRDA Server

http://download.oracle.com/docs/html/A90839_01/index.htm
Oracle Transparent Gateway for IBM DRDA Installation and User's Guide
Release 9.0.1.0.1 for AIX-Based Systems (64-bit)

http://download.oracle.com/docs/html/A97615_01/index.htm
Oracle Transparent Gateway for DB2/400 Installation and User's Guide
Release 9.2.0.1.0 for IBM AS/400

http://searchoracle.techtarget.com/tip/0,289483,sid41_gci1263933,00.html
How to create a database link in Oracle

http://blogs.ittoolbox.com/oracle/guide/archives/oracle-advanced-replication-a-definition-in-plain-english-3611
Oracle Advanced Replication: A Definition in Plain English

http://blogs.ittoolbox.com/oracle/guide/archives/database-links-a-definition-in-plain-english-7023
Database Links: A Definition in Plain English

http://forums.oracle.com/forums/thread.jspa?messageID=1583756
 Oracle Transparent Gateway for DRDA

 http://www.lslnet.com/linux/edosc/42/linux-42294599.htm
  Oracle9.2.0.4 through transparent gateway visit DB2?

   关于db2和oracle通过透明网关链接的问题!
   http://www.itpub.net/882700.html

   http://bbs.chinaunix.net/archiver/tid-442592.html
   oracle9.2.0.4 通过透明网关访问DB2问题?

   oracle透明网关
   http://blog.china.com/u/071018/85669/200710/1135822.html

   六步搞定 Oracle 透明网关环境的建立
   http://www.webjx.com/htmldata/2007-05-14/1179101140.html

   http://www.itpub.net/viewthread.php?tid=911748
   10g透明网关访问sqlserver

   http://dev.csdn.net/article/70/70375.shtm
     ORACLE中异构服务与透明网关实现数据迁移和数据共享

     http://blog.chinaunix.net/u1/47272/showart.php?id=370485
     Oracle Transparent Gateway透明网关-Head First Series

     http://www.ibm.com/developerworks/cn/db2/library/techarticles/dm-0603baiyy/
     DB2 与 Oracle 之间的远程复制


字体:


Permanant URI永久地址 http://www.shengfang.org/blog/p/20080415oracledatalink2.php
Trackback URI引用地址 http://www.shengfang.org/blog/tb.php?tb_id=1231557511

2009年1月10日11:18星期六  [Dev开发] 追踪此文的RSS
提示:
此文还没有评论。

称呼:    登陆   注册
   不注册,但记住我的信息
邮件:
(非必须)
评论: [UBB代码帮助]
粗体 斜体 下划线 链接 水平线 引用



验证码: 请输入你看见的数字
关闭UBB      提交时自动将内容复制到剪贴板

公告
Fire and Motion!

统计信息
[Yippee]||[统计]||日志:1790
在线: 12||用户: 2562 [列表]
今日:11||到访:2669510
Rss:837703||评论:1584

最新日志

最新评论

友情链接

日历

最新引用

搜索

归档

杂项
Get RSS Feed (Version 2.0)
Get Atom Feed (Version 0.3)
编码:  UTF-8