本文SQL在Oracle 10g R2(10.2.0.5)下验证通过。
1. 使用系统管理员身份登录Oracle;
2. 查看UNDO表空间分区使用情况 1 select status,count (* ),tablespace_name from dba_undo_extents group by tablespace_name,status;
查看表空间的大小
1 select status,count (* ),tablespace_name,sum (bytes)/ 1024 / 1024 from dba_undo_extents group by tablespace_name,status;
查看UNDO表空间文件及大小
1 select file_name ,bytes/ 1024 / 1024 from dba_data_files where tablespace_name= 'UNDOTBS2' ;
3. 查看UNDO表空间参数
4. 查看当前事务数量 1 select count (* ) from v$transaction;
5. 打开计时开关
然后可以使用 show timing 查看设置是否生效
6. 数据泵导出数据文件 1 expdp jhitsm/ password+ 0 @jhitsm directory= ORADATA_DUMP2 dumpfile= 20140711 fulldb_01.dmp,20140711 fulldb_02.dmp,20140711 fulldb_03.dmp,20140711 fulldb_04.dmp logfile= 20140711 fulldb_expdp_log.log schemas= jhitsm parallel= 4
7. 查看表空间下有多少表,查看某个用户有多少表 1 2 3 select * from all_tables where tablespace_name= 'XXX' ;select table_name from all_tables where tablespace_name= 'XXX' ;select * from all_tables where tablespace_name= 'YYY' and owner= 'XXX' ;
8. 查看是否为RAC部署 1 SQL > select instance_number,INSTANCE_NAME from gv$instance;
如果是rac就是多行。这里显示是多行,说明是RAC。
1 select * from v$option a where a.PARAMETER= 'Real Application Clusters' ;
Sqlplus 相关设置 sqlplus 默认设置下查询数据时,不能够像 mysql-cli 一样将结果格式化成表格样式,因此使用起来非常不方便,为了按照表格样式输出,需要做很多设置。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 # col 是 column 命令的缩写,作用是将 username 列格式化为 10 个字符宽,这个设置只能针对字符串类型 sql > col username for a10;# 将 userage 列格式化为 2 位长度 sql > col userage format 99 ;# 也可以不指定列名 sql > col for a20;# 清除列的样式 sql > col username clear;# 表示每一行允许输出300 个字符 sql > set linesize 300 ;# 设置每页显示的行数,默认为 14 行,标题和分隔符也算2 行 sql > set pagesize 20 # 可以使用 show 命令查看默认配置 sql > show paesize
参考资料:
Oracle 10g Administration Study Guide
oracle查看某个表空间下有多少表
【Oracle学习】之 在sqlplus设置格式