摘要:1、查看表空间的名称及大小
select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_sizefrom dba_tablespaces t, dba_data_files dwhere t.tablespace_name = d.tablespace_namegroup by t.tablespace_name;
2、查看表空间物......
摘要:1.having 子句的用法
having 子句对 group by 子句所确定的行组进行控制 ,having 子句条件中只允许涉及常量 , 聚组函数或 group by 子句中的列 .
2. 外部联接 "+" 的用法
外部联接 "+" 按其在 "=" 的左边或右边分左联接和右联接 . 若不带 "+" 运算符的表中的一个行不直接匹配于带 "+" 预算符的表中的任何行 , 则前者的行与......
ORACLE 9I FOR AIX 5L 的安装注意:因为oracle 9i为64位,所以安装的aix平台也必须是64位.如果不是必须要重新安装或使用连接库函数将其改为64位 # ln -sf /usr/lib/boot/unix_64 /unix 【程序编程相关:
N8cms跨越网站脚本和SQL注入攻击的】to change to 64 bit multi-processor mode: 【推荐阅读:
Sun Solaris对Perl升级】# bosboot -ad /dev/ipldevice 【扩展信息:
PeHePe Membership Ma】# ln -sf /usr/lib/boot/unix_64 /usr/lib/boot/unix # shutdown -r
一.确认系统环境
1.主机环境 机型:ibm p630 cpu :1000mhz mem :1g (min 512m) $ /usr/sbin/lsattr -e -l sys0 -a realmem realmem 12582912 amount of usable physical memory in kbytes false /tmp:1000m (min 500m) $df -k /tmp filesystem 1024-blocks free %used iused %iused mounted on /dev/hd3 655360 603088 8% 69 1% /tmp ??swap:6g (一般是2倍于mem,但因为我们的内存已经很大了,所以没有按一般规 则) $ /usr/sbin/lsps -a page space physical volume volume group size %used active auto type hd6 hdisk0 rootvg 6144mb 1 yes yes lv ??/oracle:38g (min 3.5g,本目录用于安装软件.存放source以及oracle9用户 的根目录所在) $ df -k /oracle
filesystem 1024-blocks free %used iused %iused mounted on /dev/oracle 38010880 28495268 26% 64272 1% /oracle ...
下一页 摘要:在oracle 8i中,往往会出现要在存储过程中运行操作系统命令的情况.一般来说,利用oracle enterprise manager设定作业时可以达到这个目的.但是由于oem在设定作业缺乏灵活性,设定的作业的参数是固定的.在实际应用当中往往需要在sql语句当中运行需要随时运行操作系统命令.oracle 8i没有直接运行os命令的语句,我们可以利用dbms_pipe程序包实现这一要求. dbms......