Hi:
I'm trying to do this:
declare @maxid as int
set @maxid = (select maxid from MAXIDCUSTOMER) + 1
alter table att_list_2
add recid [int] IDENTITY(@maxid,1) NOT NULL
but it gives me an error:
"Incorrect syntax near '@maxid'."
Is it possible to use a parameter on the identity?