Oracle Transparent Geteways To MSSQL
oracle通过透明网关(Oracle Transparent Geteways),访问ms sql server和其他数据库
环境:
1、在安装有oracle服务器端,ms sql server的客户端,通过oracle的透明网关访问ms sql server数据库
2、在ms sql server服务器上创建用户conn_ora,并且要能访问ms sql server数据库msdb
安装Oracle Transparent Geteways:
1、'开始'菜单的'Oracle Installation Products'下的'Universal Installer'
\\127.0.0.1\e$\oracle9.2\ORANT920\ORA92_1\NT\I386\stage\products.jar
下一步-
2、选择安装类型:
自定义,下一步
3、选择可用产品组件:
将 'Oracle Transparent Geteways 9.2.0.1.0'下的'Oracle Transparent Geteways for Microsoft SQL Server 9.2.0.1.0'选中;
将 'Oracle Transparent Geteways 9.2.0.1.0'下的'Oracle Transparent Geteways for Sybase 9.2.0.1.0'选中;
下一步;
4、设置Sybase路径
选择你的'SYBASE的完整安装路径';
下一步
5、设置数据库服务器名 和数据库名称???
Microsoft SQL Server:192.168.0.111
Microsoft SQL 数据库:msdb
服务器名称或者ip地址,数据库名字
6、继续安装:
\\127.0.0.1\e$\oracle9.2\ORANT920\ORA92_2\NT\I386\stage
\\127.0.0.1\e$\oracle9.2\ORANT920\O
相关文档:
oracle表空间操作详解
1
2
3作者: 来源: 更新日期:2006-01-04
5
6
7建立表空间
8
9CREATE TABLESPACE data01
10DATAFILE '/ora ......
####################################
# TNSNAMES.ORA Configuration File:D:\Oracle_now\NETWORK\ADMIN\tnsnames.ora 文件位置
# Generated by Oracle Enterprise Manager V2
# Date..........: Tue Jan 26 20:05:00 CST 2010
####################################
TEST1.TCSGEGDC.COM =
(DESCRIPTION =
& ......
red hat enterprise linux 5 环境下Oracle10g
一、安装前的准备工作
1、下载oracle_database_10.2.0.1.0 for linux 安装程序:
下载地址:http://202.197.127.197/libweb/down.asp(注意安装文件的版本号)
2、解压软件:
将ORACLE安装压缩包解压,得到oracle_database_10.2.0.1.0.目录
3、设置核心参数:
在/etc/sy ......
--删除空的表空间,但是不包含物理文件
drop tablespace tablespace_name;
--删除非空表空间,但是不包含物理文件
drop tablespace tablespace_name including contents;
--删除空表空间,包含物理文件
drop tablespace tablespace_name including datafiles;
--删除非空表空间,包含物理文件
drop tablespace table ......