[SAP HANA] [sql] Starting SAP HANA ScriptServer 启动HANA script 服务

启动HANA script 服务

run with SYSTEM DB user

You must have at least one SAP HANA ScriptServer instance running on the database where the function library is installed.

-- run the alter statement as SYSTEM    
connect SYSTEM password manager;    
    
-- enable script server    
alter system alter configuration ('daemon.ini', 'SYSTEM') set ('scriptserver', 'instances') = '1' with reconfigure;

Starting the SAP HANA ScriptServer (Multitenancy)

-- This is the only operational mode starting with SAP HANA 2.0 SPS01.
alter DATABASE <DBID> ADD 'scriptserver';
--where <DBID> is the tenant server ID on which the ScriptServer is started.
每天进步一点点,多思考,多总结 版权声明:本文为CNblog博主「zaituzhong」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文地址:https://www.cnblogs.com/tingxin/p/12431452.html