Home > Database > Mysql Tutorial > body text

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

WBOY
Release: 2023-08-30 09:33:02
forward
670 people have browsed it

收到错误消息: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;
Copy after login

In line 32, you used the following:

SELECT: ORGID_ARTIKEL into
Copy after login

But the correct syntax should be like this:

SELECT "ORGID_ARTIKEL" into
Copy after login

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!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!