Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Improve the performance when adding new fields in an standard table

Former Member
0 Likes
517

Hi,

In an standard table i added 3 new fields,After that the performance of Select query is reduced when i am using the table.How can i overcome this issue

Hi,

In an standard table i added 3 new fields,After that the performance of Select query is reduced when i am using the table.How can i overcome this issue

2 REPLIES 2
Read only

Former Member
0 Likes
469

Hi,

the performace of already existing selcts or select with a clause on the new columns?

If your select has something like

WHERE <newcolumn1> = 'ASDF' and <newcolumn2> = 'DummDilidumm'

you need to define a new DB - index over this columns.

Regards,

Gianpietro

Read only

Former Member
0 Likes
469

hi lakshmi,

u retieve fields as u declare in internal table..

Eg:ur tables contains fields like..

data:begin of itab occurs 0,

name like zemp-name,

no like zemp-no,

dbt like zemp-dbt,

end of itab.

select name no dbt from zemp into table itab.

if possible use where condition it will retrieve the data fastly..

if useful reward the points...