I knew this was going to be simple but for some reason it was
being
obstinate.
Below is what worked in case anyone is looking for an answer
insert into table2
select column1,column2,column3
from table1
Art wrote:
> I have a table that was created long ago with no
Identity. Now that I'm
> in SQL 2008 and want to do FTS (Full Text Search), it
doesn't see this
> table.
>
> So what I'm trying to do is copy two Columns from one
table into a new
> table that has an Identity applied to the ID.
>
> I tried below but it wants to create a new table called
Table2 and I
> just want it to update the table I already Designed.
>
> SELECT column1,column2,column3
> INTO Table2
> FROM Table1
>
> How should I really do this?
>
> Thanks.