* Oracle version: 9i
* Operating system: Windows 2003
Good afternoon,
I have a database that has two equal schemas. I need to copy the contents of a table from a schema to the other. How should I do?
The tables have the same structure, I tried the way below, but I was not happy.
INSERT INTO TESTE (SELECT * FROM SCHEMA1.TAB)
VALUES (SELECT * FROM SCHEMA2.TAB)