Can a table be created using LIKE if the principal table has an identity column that is generated by a sequence?
For example, Table A has a primary key that is generated by a Sequence. If I wanted to created a copy of Table A using LIKE, would I use "INCLUDING IDENTITY" or would I have to generate a new Sequence for the copy?
Thanks