Subject Re: [firebird-support] gen_uuid problem
Author Dimitry Sibiryakov
> select strlen(z.guid16), count(*) from rechnungszeile z group by 1
>
> should the result not be a stringlength of 16 for all ?

No, because strlen() (at least in fbudf) count bytes only till zero
character. You must stop using UDF and use built-in functions such as
OCTET_LENGTH.

SY, SD.