Hi, need help on coding.
I would like to create a table from another table, including relationships/index/keys.
I know I can do this:
Create Table New_Table
as (Select * from Old_Table)
where 1=2
but that would not include the relationships/index/keys. I wonder if it is possible to clone entirely by code. Many thanks.