MSCEWI3007
Output may not consider TIMEZONE_MINUTE.
Severity
Description
Example Code
Input Code:
SELECT EXTRACT(MINUTE FROM TIMESTAMP '1999-01-01 10:24:34 -08:15') FROM DUAL;
-- This is the output for this code: 39Output Code:
SELECT
/*** MSC-WARNING - MSCEWI3007 - OUTPUT MAY NOT CONSIDER TIMEZONE_MINUTE ***/
EXTRACT(MINUTE FROM TIMESTAMP '1999-01-01 10:24:34 -08:15') FROM DUAL;
-- This is the output for this code: 24Recommendations
Last updated
