Det vil give dig ISO-8601 nævnt i kommentaren:
select to_char(systimestamp,'YYYY-MM-DD"T"hh24:mi:sstzh:tzm') isodt from dual;
Hvis du virkelig vil have Z
i stedet for tidszone kan du bruge:
select to_char(cast(systimestamp as timestamp) at time zone 'UTC',
'yyyy-mm-dd"T"hh24:mi:ss"Z"')
from dual;