Viewing 5 posts - 16 through 20 (of 20 total)
alter your procedure like this:
select * from Customers where Id IN(select * from MainDb.dbo.MainAcc)
if your MainAcc's owner is not dbo replace dbo with proper owner or use MainDb..MainAcc
but it is...
October 26, 2003 at 10:40 pm
TRY this:
select *
from blah a
where not exists(select *
from blah a
where a.a=b.a AND
((a.b=b.b AND a.c>b.c) or (a.b>b.b))
)
October 7, 2003 at 5:36 am
quote:
You can use the ALTER TABLE command to disable and enable triggers. Also you can use sp_trigger created by Rodrigo G....
September 25, 2003 at 1:04 pm
is it possible to avoid dropping TRIGGERS ?
--YOUSEF
September 25, 2003 at 12:38 am
Viewing 5 posts - 16 through 20 (of 20 total)