欢迎来到天天文库
浏览记录
ID:41075714
大小:62.00 KB
页数:12页
时间:2019-08-15
《oracle系统表简介》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、下面全面是对Oracle系统表的一些介绍:数据字典dict总是属于Oracle用户sys的。 1、用户: selectusernamefromdba_users; 改口令 alteruserspgroupidentifiedbyspgtest; 2、表空间: select*fromdba_data_files; select*fromdba_tablespaces;//表空间 selecttablespace_name,sum(bytes),sum(blocks) fromdba_free_spacegroupbytablespace_nam
2、e;//空闲表空间 select*fromdba_data_files wheretablespace_name='RBS';//表空间对应的数据文件 select*fromdba_segments wheretablespace_name='INDEXS'; 3、数据库对象: select*fromdba_objects; CLUSTER、DATABASELINK、FUNCTION、INDEX、LIBRARY、PACKAGE、PACKAGEBODY、 PROCEDURE、SEQUENCE、SYNONYM、TABLE、TRIGGER、TYP
3、E、UNDEFINED、VIEW。 4、表: select*fromdba_tables; analyzemy_tablecomputestatistics;->dba_tables后6列 selectextent_id,bytesfromdba_extents wheresegment_name='CUSTOMERS'andsegment_type='TABLE' orderbyextent_id;//表使用的extent的信息。segment_type='ROLLBACK'查看回滚段的空间分配信息 列信息: selectdistinctt
4、able_name fromuser_tab_columns wherecolumn_name='SO_TYPE_ID'; 5、索引: select*fromdba_indexes;//索引,包括主键索引 select*fromdba_ind_columns;//索引列 selecti.index_name,i.uniqueness,c.column_name fromuser_indexesi,user_ind_columnsc wherei.index_name=c.index_name andi.table_name=
5、'ACC_NBR';//联接使用 6、序列: select*fromdba_sequences; 7、视图: select*fromdba_views; select*fromall_views; text可用于查询视图生成的脚本 8、聚簇: select*fromdba_clusters; 9、快照: select*fromdba_snapshots; 快照、分区应存在相应的表空间。 10、同义词: select*fromdba_synonyms wheretable_owner='SPGROUP'; //ifowneri
6、sPUBLIC,thenthesynonymsisapublicsynonym. ifownerisoneofusers,thenthesynonymsisaprivatesynonym. 11、数据库链: select*fromdba_db_links; 在spbase下建数据库链 createdatabaselinkdbl_spnew connecttospnewidentifiedbyspnewusing'jhhx'; insertintoacc_nbr@dbl_spnew select*fromacc_nbrwherenxx_nbr=
7、'237'andline_nbr='8888'; 12、触发器: select*fromdba_trigers; 存储过程,函数从dba_objects查找。 其文本:selecttextfromuser_sourcewherename='BOOK_SP_EXAMPLE'; 建立出错:select*fromuser_errors; oracle总是将存储过程,函数等软件放在SYSTEM表空间。 13、约束: (1)约束是和表关联的,可在createtable或altertabletable_nam
此文档下载收益归作者所有