September 27, 2010 at 8:44 am
I am inserting a single row using parameterized values into a table with about 200 columns but it takes forever. there is only index on the table which is primary key clustered index.
wonder why it may be taking this long to insert the record into the table?
September 27, 2010 at 8:52 am
What other activity was occurring on the database at the same time? What is the transaction isolation level? Are there any triggers on the table?
John
September 27, 2010 at 8:58 am
there are triggers on the table and isolation level is read committed.
September 27, 2010 at 9:00 am
With the limited information you've provided, then, I would suggest you have a look at what the triggers are doing.
John
September 27, 2010 at 9:01 am
what other information would you like me to provide?
September 27, 2010 at 9:43 am
You have primary key clustered index on your table, is it incremental?
What your triggers do?
"forever" is relative term. What is your "takes forever" means? does it time-out? Takes seconds? Minutes?
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply