sql - Copy a table including DDL statements for an Oracle table -
i know of below mentioned command copying table not able figure out how command work because cant find mentioning of newly created table. (courtesy so).
set long 5000 select dbms_metadata.get_ddl( 'table', 'my_old_table_name' ) dual; and read in oracle forum posts not 1 shot solution copy table ,its data , constraints , triggers , indexes , other such objects. true ?
simplest way export use pl/sql developer or sql developer , use export data functionality. export entire table constraints, indexes, data. give try.
Comments
Post a Comment