计算机等级考试题库:今晚就翻三级数据库技术重点的牌子啦

发布于 2018-08-29 14:27  编辑:simi
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=upper(’ &index_name’);

 

四、序列号

查看序列号,last_number是当前值

SQL >select * from user_sequences;

 

五、视图

查看视图的名称

SQL >select view_name from user_views;

查看创建视图的select语句

SQL >set view_name,text_length from user_views;

SQL >set long 2000; 说明:可以根据视图的text_length值设定set long 的大小

SQL >select text from user_views where view_name=upper(’&view_name’);

 

六、同义词

查看同义词的名称

SQL >select * from user_synonyms;

 

七、约束条件

查看某表的约束条件

SQL >select constraint_name, constraint_type,search_condition, r_constraint_name

from user_constraints where table_name = upper(’ &table_name’);

SQL >select c.constraint_name,c.constraint_type,cc.column_name

from user_constraints c,user_cons_columns cc

where c.owner = upper(’ &table_owner’) and c.table_name = upper(’&table_name’)

and c.owner = cc.owner and c.constraint_name = cc.constraint_name

order by cc.position;

 

八、存储函数和过程

查看函数和过程的状态

SQL >select object_name,status from user_objects where object_type=’FUNCTION’;

SQL >select object_name,status from user_objects where object_type=’PROCEDURE’;

查看函数和过程的源代码

SQL >select text from all_source where owner=user and name=upper(’&plsql_name’)




总而言之,还有十七天的时间就要考试了,赶紧复习以上的三级数据库技术重点,收获是与付出成正比的。千万不要忘记刷计算机等级考试题库哦!预祝大家都能够顺利考取计算机等级证书~加油吧!考无忧小编等着你们的好消息~






文章推荐:

全国计算机等级考试可以不考一级直接考二级吗?

2018年全国计算机等级考试题库“二级MS Office 高级应用考试大纲”

全国计算机等级考试报考成功后可以退费吗?(内附计算机等级考试题库)



温馨提示:

考试想拿高分吗?更多计算机等级考试题库二级ms office试题请点击查看>>>二级ms office

想要了解更多的计算机等级考试题库请点击下载>>>计算机等级考试题库

想知道更多关于计算机等级考试题库的最新资讯吗?点击进入>>>计算机等级考试题库资讯


本文网址:http://www.k51.com.cn/info/jsjdjks/1808/2945905.html
选择分享到: