darold / ora2pg

Ora2Pg is a free tool used to migrate an Oracle database to a PostgreSQL compatible schema. It connects your Oracle database, scan it automatically and extracts its structure or data, it then generates SQL scripts that you can load into PostgreSQL.
http://www.ora2pg.com/
GNU General Public License v3.0
978 stars 341 forks source link

plsql: add unsupported clause for AUTONOMOUS_TRANSACTION #1671

Closed mgerhardy closed 10 months ago

darold commented 10 months ago

Actually Ora2Pg supports the translation of autonomous transaction with directive:

    AUTONOMOUS_TRANSACTION
        Enable translation of autonomous transactions into a wrapper
        function using dblink or pg_background extension. If you don't want
        to use this translation and just want the function to be exported as
        a normal one without the pragma call, disable this directive.

but I agree that when it is disable we could apply this message. I will add the condition.