
SQL::Translator::Producer::Oracle - Oracle SQL producer

use SQL::Translator; my $t = SQL::Translator->new( parser => '...', producer => 'Oracle' ); print $translator->translate( $file );

Creates an SQL DDL suitable for Oracle.

This option remove the primary key and other key constraints from the CREATE TABLE statement and adds ALTER TABLEs at the end with it.

Mad props to Tim Bunce for much of the logic stolen from his "mysql2ora" script.

Ken Y. Clark <kclark@cpan.org>.

SQL::Translator, DDL::Oracle, mysql2ora.