hi,
how to create table from other table with index and constraints..
for example,
create table temp
as
select *
from employees;
the scripts created only table with not null constraints. I want to extract all constraints including index from base tables
Regards
michael
how to create table from other table with index and constraints..
for example,
create table temp
as
select *
from employees;
the scripts created only table with not null constraints. I want to extract all constraints including index from base tables
Regards
michael
Comment