Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Ist Oracles SYS_GUID() UUID RFC 4122-konform?

Wenn Sie dieses Format möchten, versuchen Sie Folgendes:

select regexp_replace(rawtohex(sys_guid())
       , '([A-F0-9]{8})([A-F0-9]{4})([A-F0-9]{4})([A-F0-9]{4})([A-F0-9]{12})'
       , '\1-\2-\3-\4-\5') 
         as FORMATTED_GUID 
 from dual

Beispielergebnisse:

 FORMATTED_GUID                                                                  
 ------------------------------------
 F680233E-0FDD-00C4-E043-0A4059C654C9