vote up 3 vote down star
2

I have a query like

DELETE from tablename where colname = value;

which takes awfully long time to execute. What could be the reason? I have an index on colname.

flag

58% accept rate
Could you post the explain plan of your query (in SQL*Plus, run "SET AUTOTRACE ON EXPLAIN" then your query) ? – Vincent Malgrat Aug 25 at 10:25
SQL> set autotrace on explain SQL> delete from tablename where nid = 1250626; 1 row deleted. Execution Plan ---------------------------------------------------------- 0 DELETE STATEMENT Optimizer=ALL_ROWS (Cost=2 Card=1 Bytes=48) 1 0 DELETE OF 'tablename' 2 1 INDEX (UNIQUE SCAN) OF 'PK_tablename' (INDEX (UNIQUE)) (Cost=1 Card=1 Bytes=48) This is for deletion of 1 row . The original query has a '>=' condition, which i could not see a completion till about 20 mins. Even with '=', it takes more than a minute – Ajay Aug 25 at 11:23
What about performance of SELECT * FROM tablename WHERE nid = 1250626; ? – Christian13467 Aug 25 at 12:59
Its fast! just milliseconds for execution.! The problem was infact unindexed foreign keys as mentioned by Vincent – Ajay Aug 25 at 13:55

5 Answers

vote up 6 vote down check

Hi Ajay,

There could be several explanations as to why your query takes a long time:

  1. You could be blocked by another session (most likely). Before you delete you should make sure noone else is locking the rows, eg: issue SELECT NULL FROM tablename WHERE colname=:value FOR UPDATE NOWAIT,
  2. There could be a ON DELETE TRIGGER that does additional work,
  3. Check for UNINDEXED REFERENCE CONSTRAINTS pointing to this table (there is a script from AskTom that will help you determine if such unindexed foreign keys exist).
link|flag
thanks for the reply, but not options 1 and 2 . – Ajay Aug 25 at 10:09
3rd was infact the solution :) . Now it executes within 2 secs ! – Ajay Aug 25 at 13:09
glad to help =). In fact I should probably have put the third point in the number 1 spot because it is the most likely to be overlooked – Vincent Malgrat Aug 25 at 13:32
Thanks ;-) – Ajay Aug 25 at 13:53
The link is broken. Can you please fix it? – Aaron Digulla Oct 9 at 9:55
show 1 more comment
vote up 0 vote down

If something's slow, and you don't know why, trace it and find out.

http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement

link|flag
vote up 0 vote down

Does your table holds more number of records ?
Is there some recursive programs(some nested loops etc..) running on the database server ?
Check network problems if database server is on different machines ?

link|flag
No recursive pgms on server side. No n/w problm – Ajay Aug 25 at 10:20
vote up 1 vote down

How selective is that index? If your table has one million rows and that value hits one hundred and fifty thousand of them then your index is useless. In fact it may be worse than useless if it is actually being used. Remember, a DELETE is a like a SELECT statement: we can tune its access path.

Also, deletes take up a lot of undo tablespace, so you might be suffereing from contention, if the system is experiencing heavy use. In a multi-user system another session might have a lock on the rows(s) you want to delete.

Do you have ON DELETE triggers? Do you have ON DELETE CASCADE foreign key constraints?

Edit: Given all that you say, and especially the column in question being the primary key so you are attempting to delete a single row, if it is taking a long time it is much more likely that some other process or user has a lock on the row. Is anything showing up in V$LOCK?

link|flag
No On Delete triggers. Table has more than 1 million rows . Column indexed is the primary key. No ON DELETE CASCADE Constraints. I have yet another parent table with > 1 million rows taking just about a second to delete a row ! – Ajay Aug 25 at 10:20
vote up 1 vote down

it could be that your table is related to multiple tables have a huge row count.

link|flag
yup. correct! This was a huge parent table – Ajay Aug 25 at 13:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.