NAME

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

SYNOPSIS

use SQL::Translator;

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

DESCRIPTION

Creates an SQL DDL suitable for Oracle.

producer_args

delay_constraints

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

CREDITS

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

AUTHOR

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

SEE ALSO

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