Viewing 5 posts - 1 through 5 (of 5 total)
INSERTS are slow? Check for the existence of insert triggers on the tables where the data is being inserted.
May 5, 2008 at 11:31 am
Great topic and good responses. I love reading these forums. (Steve you're awesome)
From a DBA perspective I am mostly concerned with the database when dealing with...
October 23, 2007 at 10:21 am
here's another way using a correlated subquery in the where clause
(see Chris's post above for the table structure and data)
select * from #MSG369550 a
where accountdate = (select min(accountdate) from #MSG369550
where...
May 30, 2007 at 3:04 pm
It's been my experience that triggers are rolled back along with the rest of the tran. What kind of import are you doing? What kind of triggers are you using?
May 30, 2007 at 12:09 pm
Something to check... make sure disk compression is not turned on.
March 15, 2007 at 9:04 am
Viewing 5 posts - 1 through 5 (of 5 total)