Hello Experts,
I am using kettle to migrate Oracle schema (to another Oracle schema) and stuck with this scenario -
CREATE OR REPLACE TYPE ssn AS OBJECT(ssn NUMBER(10));
-- table not getting migrated when type is referenced as column
CREATE TABLE person
(
NAME VARCHAR(40) NOT NULL,
refssn ssn NOT NULL
);
Please guide how this migration scenario can be handled through kettle.
Thank you.
I am using kettle to migrate Oracle schema (to another Oracle schema) and stuck with this scenario -
CREATE OR REPLACE TYPE ssn AS OBJECT(ssn NUMBER(10));
-- table not getting migrated when type is referenced as column
CREATE TABLE person
(
NAME VARCHAR(40) NOT NULL,
refssn ssn NOT NULL
);
Please guide how this migration scenario can be handled through kettle.
Thank you.