ORACLE bin目录下各文件的意义及使用方法
ORACLE bin目录下各文件的意义及使用方法
$ORACLE_HOME/bin下的utilities解释
Binary First Available Description
--------- ----------------
------------------------------------------
adapters (7.3.4) Installed Network Adapters
agentctl 9.0.1 Agent Control Utility
agtctl 8.1.5 Agent Control Utility
bulkmodify 8.1.6 Oracle Internet Directory bulk
modify
cmadmin 8.1.6 Connection Manager Administrator
cmctl 8.1.6 Connection Manager Control
Utility
cmgw 8.1.6 C
相关文档:
http://www.oracle.com/technology/global/cn/pub/notes/technote_php_instant.html
为 Linux 和 Windows 安装 PHP 和 Oracle 10g Instant Client
作者:Christopher Jones,甲骨文公司的咨询技术人员
发布日期:2004 年 12 月
Oracle 10g Instant Client(免费下载)是PHP 与远程 Oracle 数据库连接的最简单方式,它 ......
认识存储过程和函数
存储过程和函数也是一种PL/SQL块,是存入数据库的PL/SQL块。但存储过程和函数不同于已经介绍过的PL/SQL程序,我们通常把PL/SQL程序称为无名块,而存储过程和函数是以命名的方式存储于数据库中的。和PL/SQL程序相比,存储过程有很多优点,具体归纳如下:
* 存储过程和函数以命名的数据库对象形式存储 ......
//创建数据表空间
create tablespace zfmi logging datafile 'D:\oracle\oradata\zfmi\zfmi.dbf' size 100m autoextend on next 32m maxsize 2048m extent management local;
//创建用户并指定表空间
create user zfmi identified by zfmi default tablespace zfmi temporary tablespace zfmi_temp;
//给用户授予权� ......
启动与配置参数 更改系统元数据和参数配置 动态视图 存储的物理和逻辑结构 启动和关闭
top启动与配置参数
在SQL Server安装的时候,同时也会往Windows注册表里面添加一些记录,这些注册表键值指定了实例所需要的各种参数。比如,有的注册表键值指定了错误日志的保存目录,另外的指定了默认的备份目录等等。SQL Server在� ......