DBA Data[Home] [Help]

SYS.VALIDATE_CONTEXT dependencies on DBMS_OUTPUT

Line 76: dbms_output.put_line(

72: else null
73: end;
74:
75: if l_compile_sql is null then
76: dbms_output.put_line(
77: 'FAILED CHECK FOR '||c1.dbo_type||' '||c1.dbo_name);
78: dbms_registry.invalid('CONTEXT');
79: goto endfunc;
80: else

Line 85: dbms_output.put_line(

81: begin
82: execute immediate l_compile_sql;
83: exception
84: when others then
85: dbms_output.put_line(
86: 'FAILED CHECK FOR '||c1.dbo_type||' '||c1.dbo_name);
87: dbms_registry.invalid('CONTEXT');
88: goto endfunc;
89: end;