├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── README.ora_migrator ├── TODO ├── expected ├── check_results.out ├── install.out ├── migrate.out └── partitioning.out ├── ora_migrator--1.1.0.sql ├── ora_migrator.control ├── ora_mktest.sql └── sql ├── check_results.sql ├── install.sql ├── migrate.sql └── partitioning.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/README.md -------------------------------------------------------------------------------- /README.ora_migrator: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/TODO -------------------------------------------------------------------------------- /expected/check_results.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/expected/check_results.out -------------------------------------------------------------------------------- /expected/install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/expected/install.out -------------------------------------------------------------------------------- /expected/migrate.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/expected/migrate.out -------------------------------------------------------------------------------- /expected/partitioning.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/expected/partitioning.out -------------------------------------------------------------------------------- /ora_migrator--1.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/ora_migrator--1.1.0.sql -------------------------------------------------------------------------------- /ora_migrator.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/ora_migrator.control -------------------------------------------------------------------------------- /ora_mktest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/ora_mktest.sql -------------------------------------------------------------------------------- /sql/check_results.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/sql/check_results.sql -------------------------------------------------------------------------------- /sql/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/sql/install.sql -------------------------------------------------------------------------------- /sql/migrate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/sql/migrate.sql -------------------------------------------------------------------------------- /sql/partitioning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/ora_migrator/HEAD/sql/partitioning.sql --------------------------------------------------------------------------------