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
979 stars 341 forks source link

Generated export_schema.ps1 contains bash if else #1797

Open robinpringle opened 1 week ago

robinpringle commented 1 week ago

When generating a new project the resulting powershell export script contains an if else more akin to bash. It should be: if ($etype -eq "TABLE") { $blob_to_lo="" } else { $blob_to_lo="" }