-->

Spiga

Copy a Oracle Table

How To Copy a Oracle Table With data or without data?

With Data:-
create table Table_Name_Bkp as select * from Table_Name where '1' = '1'

Without Data:-
create table Table_Name_Bkp as select * from Table_Name where '1' = '2'