{{theTime}}

Search This Blog

Total Pageviews

ORA-04063 - Re-compiling PL/SQL procedures and packages


The ORA-04063 error is caused when a PL/SQL procedure of package becomes invalid after a change to a subordinate procedure or a schema (table) change.
ORA-04063: package body "name" has errors
Recompile the packages to resolve this error.


No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...