sql >> Base de Datos >  >> RDS >> Oracle

¿Cómo generar un UUID de versión 4 (aleatorio) en Oracle?

Este es un ejemplo completo, basado en la respuesta de @Pablo Santa Cruz y el código que publicaste.

No estoy seguro de por qué recibiste un mensaje de error. Probablemente sea un problema con SQL Developer. Todo funciona bien cuando lo ejecuta en SQL*Plus y agrega una función:

   create or replace and compile
   java source named "RandomUUID"
   as
   public class RandomUUID
   {
      public static String create()
      {
              return java.util.UUID.randomUUID().toString();
      }
   }
   /
Java created.
   CREATE OR REPLACE FUNCTION RandomUUID
   RETURN VARCHAR2
   AS LANGUAGE JAVA
   NAME 'RandomUUID.create() return java.lang.String';
   /
Function created.
   select randomUUID() from dual;
RANDOMUUID()
--------------------------------------------------------------
4d3c8bdd-5379-4aeb-bc56-fcb01eb7cc33

Pero me quedaría con SYS_GUID si es posible. Mire el ID 1371805.1 en My Oracle Support:este error supuestamente se corrigió en 11.2.0.3.

EDITAR

Cuál es más rápido depende de cómo se usen las funciones.

Parece que la versión de Java es un poco más rápida cuando se usa en SQL. Sin embargo, si va a utilizar esta función en un contexto PL/SQL, la función PL/SQL es aproximadamente el doble de rápida. (Probablemente porque evita la sobrecarga de cambiar entre motores).

He aquí un ejemplo rápido:

--Create simple table
create table test1(a number);
insert into test1 select level from dual connect by level <= 100000;
commit;

--SQL Context: Java function is slightly faster
--
--PL/SQL: 2.979, 2.979, 2.964 seconds
--Java: 2.48, 2.465, 2.481 seconds
select count(*)
from test1
--where to_char(a) > random_uuid() --PL/SQL
where to_char(a) > RandomUUID() --Java
;

--PL/SQL Context: PL/SQL function is about twice as fast
--
--PL/SQL: 0.234, 0.218, 0.234
--Java: 0.52, 0.515, 0.53
declare
    v_test1 raw(30);
    v_test2 varchar2(36);
begin
    for i in 1 .. 10000 loop
        --v_test1 := random_uuid; --PL/SQL
        v_test2 := RandomUUID; --Java
    end loop;
end;
/

Los GUID de la versión 4 no son completamente aleatorio. Se supone que algunos de los bytes son fijos. No estoy seguro de por qué se hizo esto, o si es importante, pero según https://www.cryptosys.net/pki/uuid-rfc4122.html:

El procedimiento para generar un UUID de la versión 4 es el siguiente:

Generate 16 random bytes (=128 bits)
Adjust certain bits according to RFC 4122 section 4.4 as follows:
    set the four most significant bits of the 7th byte to 0100'B, so the high nibble is "4"
    set the two most significant bits of the 9th byte to 10'B, so the high nibble will be one of "8", "9", "A", or "B".
Encode the adjusted bytes as 32 hexadecimal digits
Add four hyphen "-" characters to obtain blocks of 8, 4, 4, 4 and 12 hex digits
Output the resulting 36-character string "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"

Los valores de la versión de Java parecen ajustarse al estándar.