Hi!I'v the following view and that triger ...CREATE view [dbo].[t] asselect * from t1unionselect * from server2.DB.dbo.t2
create trigger t_insert on dbo.t instead of insertas insert into t1 ([name],[Type]) select [name],[Type] from inserted where Type<>14 insert into server2.DB.dbo.t2 ([name],[Type]) select [name],[Type] from inserted where Type=14 go
when i try this query, give me error "Transaction context in use by another session"insert into t ([name],[Type]) values ('n',14)i want to try this query with successis there any change to triger???pls help