How can I export a database from MS SQL to Oracle? Is it possible?
I create a ER schema in MS SQL then try to convert and generate script. I just need to run it in the Oracle window?
CREATE TABLE "dbo"."Categories" (
"num_categories" NUMBER(38) NOT NULL,
"descriptions" CHAR(10) NULL,
CONSTRAINT "PK_Categories" PRIMARY KEY("num_categories")
NOT DEFERRABLE
NOVALIDATE
)