cancel
Showing results for 
Search instead for 
Did you mean: 

Table issue - Takes long time for processing - No data in the table

m_aravindan
Active Participant
0 Kudos

Hi ,

There is a issue with a standard table. The table is not having any data, but still  it takes long time to process a delete statement.

When I checked for number of entries in SE11 , it returned as no entry’s. but for checking number

of entry’s , it took around 20 seconds to process.

Suggest your valuable thoughts on this.

Best Regards

Aravindan M

Accepted Solutions (0)

Answers (3)

Answers (3)

0 Kudos

Hello Aravindan,

Normally, These kind of performance issues on table is improved when its statistics are update. Check for that table stats and update it and try again. That would help.

Thank you,

Sree.

pasumpon_karuppaiah
Participant
0 Kudos

Hi Aravindan ,

I had the same issue, De Org of the table  solved the issue.

Best Regards

Pasumpon

Sriram2009
Active Contributor
0 Kudos

Hi Aravindan

In which standard table name your are having performance issue? during the deletion time what is the over all system usage? could you tell in detail

BR

SS

m_aravindan
Active Participant
0 Kudos

Hi Sriram,

GRACROLEACTVl   IS the table name.

The table is not having any data.

during execution of the program ,it takes around 2 minutes to execute that particular

delete statement. For other delete statements it executes normally.


BR

Aravindan

0 Kudos

Hi Aravindan,

The TRUNCATE TABLE statement is usually faster than removing all the rows with DELETE statement, because TRUNCATE ignores table dependencies (triggers, indexes, etc...) and there is no WHERE statement to check.  TRUNCATE removes all rows of the table, and also reassigns the empty extents to the freespace, so the table size should reduce.

You can simply use TRUNCATE TABLE GRACROLEACTVl;

regards, P. Mihálffy

Sriram2009
Active Contributor
0 Kudos

Hi Aravindan

Could you check this SAP Note 1873361 for your performance issue

BR

SS