set serveroutput on DECLARE cursor cemp is select to_char(hiredate,'yyyy') from emp ; phiredate ); count80 ; count81 ; count82 ; count87 ; begin open cemp; loop fetch cemp into phiredate; exit when cemp%notfound; ; elsif phiredate; elsif phiredate; ;…
参考: http://blog.csdn.net/haiross/article/details/20612135 Oracle/PLSQL: ORA-06550 Learn the cause and how to resolve the ORA-06550 error message in Oracle. Description When you encounter an ORA-06550 error, the following error message will appear: OR…
1. 理解什么是统计信息 优化器统计信息就是一个更加详细描述数据库和数据库对象的集合,这些统计信息被用于查询优化器,让其为每条SQL语句选择最佳的执行计划.优化器统计信息包括: · 表的统计信息 o 行数 o Block数 o 行平均长度 · 列的统计信息 o 列中不同值的数量 o 列中null的数量 o 数据分布(柱状图/直方图) · 索引的统计信息 o 叶子块的数量 o 索引的高度 o 聚簇因子(cl…