What does "Standard" mean in the description data type column
If you
Describe dbms_transform
PROCEDURE COMPUTE_TRANSFORMATION
Argument Name Type In/Out
------------------------------ ----------------------- ------
MESSAGE STANDARD IN
TRANSFORMATION_SCHEMA VARCHAR2 IN
TRANSFORMATION_NAME VARCHAR2 IN
TRANSFORMED_MESSAGE STANDARD OUT
What does STANDARD mean?
0
Mark brady
source
to share
2 answers
The type "<ADT_1>" which is defined in the package standard.
According to the reference these
data types are generics, used specifically within the STANDARD package and some other Oracle packages. They are protected from other uses; Sorry. True generic types are not yet part of the language.
+1
source to share