Viewing 4 posts - 1 through 4 (of 4 total)
I can only understand the answer if there's a type in the question.
Was the question using identity (-1,-1)?
June 28, 2010 at 5:34 am
this does not work as explained with SQL 2008 R2.
sp or not, the local version of the stored procedure is executed first.
June 9, 2010 at 5:27 am
Indexes are obviously supported by any edition of SQL Server 2005.
But partition is unfortunately present only in the Enterprise and Developer editions.
September 21, 2006 at 6:49 am
I agree with the previous post, a stored procedure is probably the best solution. But the trigger can be written such as:
CREATE TRIGGER tri_ins_Residential_Customers
on Residential_Customers
FOR INSERT
as
insert into Customers(CustomerTypeId, CustomerId)
...
September 18, 2006 at 5:33 am
Viewing 4 posts - 1 through 4 (of 4 total)