摘要: 过程和函数中的参数的类型只需要声明类型不必须指定长度(精度);带参数的cursor的参数也只需要声明类型不必须指定长度(精度);只有单独声明的变量需要指定长度(精度);不只是varchar2如此,number等其他类型也是如此 阅读全文
posted @ 2015-06-30 17:03 37度的冰 阅读(148) 评论(0) 推荐(0) 编辑
摘要: ORA-06550: line 1, column 7:PLS-00306: wrong number or types of arguments in call to 'P'ORA-06550: line 1, column 7:PL/SQL: Statement ignored这是报错;原因:使... 阅读全文
posted @ 2015-06-12 14:12 37度的冰 阅读(1323) 评论(0) 推荐(0) 编辑
摘要: 这是在pl/sql中执行存储过程报的错,原因是serveroutput限制存储,解决方案:set serveroutput on size 10000000; 阅读全文
posted @ 2015-06-12 14:07 37度的冰 阅读(193) 评论(0) 推荐(0) 编辑