Table acces full durante update
¿Hola, cómo estas? Tengo la siguiente duda, durante la ejecución de un sentencia update, se realiza un table access full, la pregunta es, ¿seria recomendable colocar indices a la tabla?. Este es el update:
update routing_cdma
set WINPOSTPAGO = 878,
WINPREPAGO = 878
where RANGE_START = '0000'
and RANGE_END = '0049'
and ROUTING_TYPE = 'TEL';
y cuando se hace update sobre toda la tabla, seria recomendable el indice ?
Gracias y saludos.
update routing_cdma
set WINPOSTPAGO = 878,
WINPREPAGO = 878
where RANGE_START = '0000'
and RANGE_END = '0049'
and ROUTING_TYPE = 'TEL';
y cuando se hace update sobre toda la tabla, seria recomendable el indice ?
Gracias y saludos.
1 respuesta
Respuesta de innet
1