Bulk Bind 错误的简要记录

oracle错误描述:ORA-06502:PL/SQL:numeric or value error: Bulk Bind:Truncated Bind
这个错误是oracle检测字段长度和实际插入或者修改字段长度不符合报的错(区别于ora-12899:value too large for column)。
报错场景模拟:
先建表:
create table test_user(id number(15),username varchar2(100),password varchar2(30));

插入一条记录:
insert into test_user values(1,'let_me_make_a_name_longer_than_password_oh_no_the_password_is_so_long','haha');

报错过程:
declare
type test_error is table of test_user%rowtype index by pls_integer;
error_here test_error;
begin
    select u.id,u.password, u.username bulk collect into error_here from test_user u;
end;
/



oracle plsql中rowtype,或者insert语句等等没有具体标明字段的地方都是按照表创建时的顺序来着(没有具体标明它也不知道怎么插)。以前理所当然的这么默认着用了,报错查错的时候缺没有想到这点……脑残

你可能感兴趣的:(oracle,sql)