Ver Mensaje Individual
  #22 (permalink)  
Antiguo 05/02/2008, 16:22
Avatar de matanga
matanga
 
Fecha de Ingreso: octubre-2007
Ubicación: España
Mensajes: 1.091
Antigüedad: 16 años, 6 meses
Puntos: 85
Re: Grave Problema - Tema Para Expertos -

Hola,

Esto se pone de lo mas absurdo, fijate en el siguiente ejemplo.

Código:
SQL> insert into t1 values (1,1);

1 row created.

SQL> insert into t1 values (1,2)

1 row created.

SQL> commit;

Commit complete.

SQL> select * from t1;

        ID       DATA
---------- ----------
         1          1
         1          2

SQL> select * from t1 order by id;

        ID       DATA
---------- ----------
         1          2
         1          1
Parece que el algoritmo de sorting de la 10g es un tanto bizarro :)

Saludos