时间:2021-07-01 10:21:17 帮助过:6人阅读
#Windows NT 4.0
#[Windows-4.0-required]
#Service pack forWindows NT4.0, use %SystemRoot%\WinNt\System32\winver.exe to find version andservice pack
#SERVICE_PACK=6a
#You can customisethe message shown for Service Pack failure through SERVICE_PACK_FAILURE_MESSAGE
#Minimum displaycolours for OUI to run
MIN_DISPLAY_COLORS=256
#UseMIN_DISPLAY_COLORS_FAILURE_MESSAGE to customise message for failure of checkfor Display colors
#Minimum CPU speedrequired for OUI in MHz
#CPU=300
#CPU_FAILURE_MESSAGE,use to customise error message for CPU speed check
#[Windows-4.0-optional]
#Windows 2000 use winver.exe to find version
[Windows-5.0-required]
#Minimum display colours for OUI to run
MIN_DISPLAY_COLORS=256
#Minimum CPU speed required for OUI
#CPU=300
[Windows-5.0-optional]
#Windows XP use winver.exe to find version
[Windows-5.1-required]
#Minimum display colours for OUI to run
MIN_DISPLAY_COLORS=256
#Minimum CPU speed required for OUI
#CPU=300
[Windows-5.1-optional]
#Windows .net use winver.exe to find version
[Windows-5.2-required]
#Minimum display colours for OUI to run
MIN_DISPLAY_COLORS=256
#Minimum CPU speed required for OUI
#CPU=300
[Windows-5.2-optional]
如上文中红色部分,这里是检查系统环境的,结果都被凝视了。所以自然是不检查了!将这里的#删掉就可以。另假设是win7,还须要加入windows6.1支持。
(4)另外假设提示条件检查通过却还不能出现安装界面,可能是oracle当前安装路径有中文或者空格,能够将安装路径自己改一下再重试就可以。
(5)假设检查安装条件过程中,提示网络适配器有问题,则安装之前请将本地IP地址手动设置。
前三步都非常容易。基本直接依照向导的提示来就可以。第四步创建数据库也非常easy,假设没有特殊设置,也是依照向导提示操作就可以。
第五步。我用的是绿色版,免安装,这里须要一些配置。
(1) 打开程序,不登陆。进入程序。
(2)在tools-preference中的connection中,配置oracle home和OCI,其路径为相应的oracle客户端中的instantclient路径。如“D:\oracle\product\10.2.0\client_1\instantclient”。
(3)改动oracle客户端下。D:\oracle\product\10.2.0\client_1\NETWORK\ADMIN下的tnsnames.ora文件,类似
ORCL =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.35.157)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = orcl)
)
)
EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY =EXTPROC0))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)
当中基本仅仅须要改动红色标注的地方,各自是数据库服务的名字和oracleserver主机地址。
(4)在D:\oracle\product\10.2.0\client_1\instantclient\下新建network\admin目录,将上面的tnsnames.ora拷贝进去。
(5)再次打开PL/SQL Developer,选择数据库。输入usernamepassword登录,就可以。
进入后,可使用system用户新建用户。表空间或数据表。并配置角色和权限,之后便可使用自己定义的用户登录,并做相关操作。
以上步骤是我隔了一段时间之后总结的,详细的过程假设有遗漏和错误,请查阅其它相关资料。
Oracle安装配置流程
标签: