To use the features compatible with Oracle databases, create a new instance and execute the following command for the "postgres" and "template1" databases:
CREATE EXTENSION oracle_compatible;
Features compatible with Oracle databases are defined as user-defined functions in the "public" schema created by default when database clusters are created, so they can be available for all users without the need for special settings.
For this reason, ensure that "public" (without the double quotation marks) is included in the list of schema search paths specified in the search_path parameter.
There are also considerations for use the features compatible with Oracle databases. Refer to " Precautions when Using the Features Compatible with Oracle Databases" in the Application Development Guide for details.