Recreating a Schema’s Tables in Another Schema
|
1 2 3 4 5 6 7 |
SELECT 'CREATE TABLE ' || table_name || ' ' || 'AS SELECT * FROM SCHEMA_ISMI.' || table_name ||' ;' AS "Create Table Script" FROM all_tables where owner = 'SCHEMA_ISMI'; |
Kategori seçin...
