Home >Database >Mysql Tutorial >Received error message: Scalar types are not allowed in SAP HANA

Received error message: Scalar types are not allowed in SAP HANA

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBforward
2023-08-30 09:33:02784browse

收到错误消息:SAP HANA 中不允许标量类型

A few points about the code that creates the stored procedure, you can edit and try

PROCEDURE "SLT_DELETE"."HCDW.IT.IT::TO_TIMESTAMP_CALL" (IN IN_DATE DECIMAL(15),
   OUT OUT_DATE TIMESTAMP)
   LANGUAGE SQLSCRIPT AS
   --DEFAULT SCHEMA <default_schema_name>
   --READS SQL DATA AS
BEGIN
   select to_timestamp(IN_DATE) into OUT_DATE FROM DUMMY;
END;

In line 32, you used the following:

SELECT: ORGID_ARTIKEL into

But the correct syntax should be like this:

SELECT "ORGID_ARTIKEL" into

The above is the detailed content of Received error message: Scalar types are not allowed in SAP HANA. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete