FoxPro/Visual FoxPro - Problema indice

 
Vista:

Problema indice

Publicado por andres (42 intervenciones) el 09/08/2004 18:10:44
Buenos días

Mi problema es el siguiente cree el siguiente indice
Select 1
Use &mdirbas.tb_trans Excl
Set Order To Tag itransm
Index on f_fecha tag ifecha
Index on c_horinip tag itransm
Index on c_cliente tag itransmc
Index on dtoc(f_fecha) + c_horini tag ifhi
Index on dtoc(f_fecha) + c_horinip + c_carrier tag ihorca

El problema comenzo cuando agregue el índice ihorca (los índices anteriores ya estaban desde un inicio) ya que al utilizarlo al ejecutar el sistema en ocaciones se pierde y me revuelve la información al insertar, borrar y modificar, lo mando llamar de la siguiente manera.

set order to tag ihorca
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Problema indice

Publicado por saul (362 intervenciones) el 10/08/2004 00:18:55
Index on f_fecha tag ifecha additive
Index on c_horinip tag itransm additive
Index on c_cliente tag itransmc additive
Index on dtoc(f_fecha) + c_horini tag ifhi additive
Index on dtoc(f_fecha) + c_horinip + c_carrier tag ihorca additive

veras que te funciona

bye

Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar