I have 1 table (out of many) that has very poor performance when performing
a select into on. The select statement is called multiple times. We've
found each call to take almost 1 second... we were expecting less than .1
seconds.
The select stmt looks like:
select key,data into key_buff, data_buff from tablename where key > curr_key
AND key < max_key ORDER by key FETCH FIRST 1 ROW ONLY;
Any idea to troubleshoot performance ?
Thanks
a select into on. The select statement is called multiple times. We've
found each call to take almost 1 second... we were expecting less than .1
seconds.
The select stmt looks like:
select key,data into key_buff, data_buff from tablename where key > curr_key
AND key < max_key ORDER by key FETCH FIRST 1 ROW ONLY;
Any idea to troubleshoot performance ?
Thanks
Comment