Comment on page
MSCEWI1051
Unrecognized or unsupported parameter data type
Medium
This error happens when the source code has a parameter that is not supported or was not recognized by the conversion tool.
CREATE OR REPLACE PROCEDURE PROCEDURE_PARAMETERS(PARAM SDO_GEOMETRY)
AS
BEGIN
null;
END;
CREATE OR REPLACE PROCEDURE PUBLIC.PROCEDURE_PARAMETERS (PARAM VARIANT /*** MSC-ERROR - MSCEWI1051 - UNRECOGNIZED OR UNSUPPORTED PARAMETER DATA TYPE SDO_GEOMETRY ***/)
RETURNS STRING
LANGUAGE JAVASCRIPT
EXECUTE AS CALLER
AS
$$
// HELPER CODE
null;
$$;
- Look for an alternative for the used data type.