CURRENT_TRANSFORM_GROUP_FOR_TYPE
Example
Section titled “Example”SELECT CURRENT_TRANSFORM_GROUP_FOR_TYPE('VARCHAR2') AS Current_Transform_GroupFROM dual;Output
Section titled “Output”Current_Transform_Group-----------------------SYS$XMLTYPEExplanation
Section titled “Explanation”The CURRENT_TRANSFORM_GROUP_FOR_TYPE() function in Oracle returns the name of the current transform group for the specified SQL data type. In this example, we are passing ‘VARCHAR2’ to the function and it returns ‘SYS$XMLTYPE’, which is the current transform group for this type.