You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select*from user_errors where name not like'BIN$%'and (name like'UT%'or name in ('EQUAL','BE_TRUE','BE_FALSE','BE_NULL','BE_NOT_NULL','MATCH'));
112
+
select*from user_errors where name not like'BIN$%'and (name like'UT%'or name in ('EQUAL','BE_TRUE','BE_FALSE','BE_NULL','BE_NOT_NULL','MATCH','BE_LIKE'));
111
113
112
114
declare
113
115
l_cnt integer;
114
116
begin
115
117
selectcount(1)
116
118
into l_cnt
117
-
from user_errors where name not like'BIN$%'and (name like'UT%'or name in ('EQUAL','BE_TRUE','BE_FALSE','BE_NULL','BE_NOT_NULL','MATCH'));
119
+
from user_errors where name not like'BIN$%'and (name like'UT%'or name in ('EQUAL','BE_TRUE','BE_FALSE','BE_NULL','BE_NOT_NULL','MATCH','BE_LIKE'));
118
120
if l_cnt >0 then
119
121
raise_application_error(-20000, 'Not all sources were successfully installed.');
0 commit comments