Question

Removing a package from IFS environment

  • 28 February 2023
  • 1 reply
  • 69 views

Badge +1

Hello,

So we deployed a package to an environment but it is causing a bit of issue, and i trying to revert the process. 

 

How can i remove the package and revert all changes made by the package.

Thanks


1 reply

Userlevel 7
Badge +31

Hi @zryibrahima,

Assuming you are referring to a custom utility database package, removing the package is as simple as dropping the package body and the specification from the database using DROP PACKAGE [BODY] <schema_name.package_name> statement. However, if you modified any data or used the package in other areas in the application such as custom attributes or commands or scheduled tasks, then you would have to correct those affected areas manually.

 Hope this helps!

Reply