I have some Oracle Packages and some standalone procedure in Oracle schema. As we are converting our application as PostgreSQL compliant we are looking at these Oracle objects. These packages have no variables declared and consist of a few stored procedures. Please suggest a good approach to convert them into PosgreSQL compliant objects
1. PL/SQL Packages
Is it advisable to convert constituent stored procedures into PostgreSQL Functions and wrap them inside another function?
2. PL/SQL Stored Procedures
Is it advisable to convert stored procedures into PostgreSQL Functions?