易截截图软件、单文件、免安装、纯绿色、仅160KB

oracle数据字典小结


下面按类别列出一些ORACLE用户常用数据字典的查询使用方法。
   
    一、用户
    查看当前用户的缺省表空间
    SQL>select username,default_tablespace from user_users;
    查看当前用户的角色
    SQL>select * from user_role_privs;
 
    查看当前用户的系统权限和表级权限
    SQL>select * from user_sys_privs;
    SQL>select * from user_tab_privs;
    二、表
     
    查看用户下所有的表
    SQL>select * from user_tables;
         
    查看名称包含log字符的表
    SQL>select object_name,object_id from user_objects where instr(object_name,'LOG')>0;
     
    查看某表的创建时间 
    SQL>select object_name,created from user_objects where object_name=upper('&table_name');
     
    查看某表的大小
    SQL>select sum(bytes)/(1024*1024) as size(M) from user_segments where segment_name=upper('&table_name');
     
    查看放在ORACLE的内存区里的表  
    SQL>select table_name,cache from user_tables where instr(cache,'Y')>0;
   
    三、索引
    
    查看索引个数和类别
    SQL>select index_name,index_type,table_name from user_indexes order by table_name;
 查看索引被索引的字段
    SQL>select * from user_ind_columns where index_name=upper('&index_name');
     
    查看索引的大小
    SQL>select sum(bytes)/(1024*1024) as size(M) from user_segments where segment_name=up


相关文档:

ORACLE物化视图 物化视图应用之初体验~~~


itpub论坛中曾有兄弟说过materialized view是以空间换时间,我认为非常贴切。物化视图实际就是基于查询的数据拷贝,其形式
简单理解的话可以看成是create table table_name as select * from table。
呵呵,人们总是希望事情越简单越好嘛,于是当俺看到这个东西这么简单,头脑一发热也迫不及待冲了过云,下面我就具体描 ......

Oracle Decode函数

DECODE函数相当于一条件语句(IF).它将输入数值与函数中的参数列表相比较,根据输入值返回一个对应值。函数的参数列表是由若干数值及其对应结果值组成的若干序偶形式。当然,如果未能与任何一个实参序偶匹配成功,则函数也有默认的返回值。区别于SQL的其它函数,DECODE函数还能识别和操作空值.
其具体的语法格式如下:
DE ......

oracle游标

SET NEWPAGE NONE HEADING OFF SPACE 0 PAGESIZE 0 TRIMOUT ON TRIMSPOOL ON LINESIZE 2500 colsep | feedback off termout off pages 0
set colsep |
alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';
set feedback on
declare cursor cur_no is
select  beginno,endno  from hm where 1=1;
b ......

Oracle 的数据导入导出及 Sql Loader (sqlldr) 的用法

原文:http://www.blogjava.net/Unmi/archive/2009/01/05/249956.html
在 Oracle 数据库中,我们通常在不同数据库的表间记录进行复制或迁移时会用以下几种方法:
1. A 表的记录导出为一条条分号隔开的 insert 语句,然后执行插入到 B 表中
2. 建立数据库间的 dblink,然后用 create table B as select * from A ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号