Compile all the objects in given schema
begin
SYS.UTL_RECOMP.RECOMP_PARALLEL(‘N’, ‘Schema_name’);
end;
/
To compile all of the invalid objects owned by APPS
————————————————————-
Note: must use UPPER case on the schema name
begin
dbms_utility.compile_schema(‘APPS’);
end;
/
Leave a Reply
Want to join the discussion?Feel free to contribute!