Hi,
Anybody know how to copy the table with constraints (including primary key, foreign key, index, etc..) ???
I used the following copy statement and it does copy ONLY the table with records.
Select *
Into T1
From T2
Any idea?
Thanks.