本帖最后由 333999 于 2011-3-21 11:22 编辑
Oracle 9I 下载地址:
http://download.oracle.com/otn/nt/oracle9i/9201/92010NT_Disk1.zip
http://download.oracle.com/otn/nt/oracle9i/9201/92010NT_Disk2.zip
http://download.oracle.com/otn/nt/oracle9i/9201/92010NT_Disk3.zip
——————————————————————————–
PLSQL_Developer_7.0.1_中文版下载地址:
http://u.115.com/file/f755930752#
PLSQL_Developer_7.0.1_中文版.rar——————————————————————————-
客户端下载地址:
本部分设定了隐藏,您已回复过了,以下是隐藏的内容
http://u.115.com/file/t71770d00b#
天行者.part3.rar
http://u.115.com/file/t75912e631#
天行者.part2.rar
http://u.115.com/file/t7c6ae78d3#
天行者.part1.rar
放同一文件夹下解压
此架设方法是用win2003X64+win2003 2个系统架设
软件要求:
Windows2003 x64 企业版
Oracle9i 版本
1:Oracle 安装
文件定位
定位栏需要选择路径,由于数据库庞大,请装在空间大的分区里面
可用产品
选第一个全部安装
安装类型
选企业版
数据库配置
选通用
Mts recovery service配置
选默认端口2030
数据库标识
全局数据库名 account
Sid account
数据库文件位置
自己选择
数据库字符集
使用缺省字符集
—开始安装
设置sys口令和system口令
安装结束 重新启动机器
打开
http://127.0.0.1/isqlplus/
—————————————————————–
启动SQLPLUS,输入以下命令
–创建用户
create user alef IDENTIFIED BY 密码;
设置角色权限
— Grant/Revoke role privileges
grant connect to alef;
grant resource to alef;
— Grant/Revoke system privileges
grant alter session to alef;
grant create cluster to alef;
grant create database link to alef;
grant create sequence to alef;
grant create session to alef;
grant create synonym to alef;
grant create table to alef;
grant create view to alef;
grant dba to alef;
导入数据库
SQLPLUS里运行
@d:\sql\account.sql; \\改为你正确的SQL路径就可以了
一共3个库,导完1个了,其他2个用SQLPLUS 导入。
数据库导完后修改SERVERCONFIG表里的服务器名称,密码。IP地址为你的服务端IP!
客户端安装Oracle 9i 客户端,选管理员那个。装完后把下面内容放到数据库安装目录和客户端安装目录下文件,路径是D:\oracle\ora92\network\admin\tnsnames.ora ,改成以下内容!
# TNSNAMES.ORA Network Configuration File: D:\oracle\ora92\NETWORK\ADMIN\tnsnames.ora
# Generated by Oracle configuration tools.
ACCOUNT =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.88)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = account)
)
)
启动服务端即可。客户端新建快捷方式,启动参数位 /L192.168.1.200:11002
没有回复内容