zoukankan      html  css  js  c++  java
  • [SAP HANA] [AFL installation] SAP HANA Automated Predictive Library

    Extracting the Package Contents

    1. Login to the SAP Support websiteInformation published on SAP site and click the Download Software icon.
    2. Search for APL in the Downloads option of the drop-down list.
    3. Select and download the package of your choice.
    4. unzip <file_name>.ZIP

    Installing SAP HANA APL Using the Command Line

    --SAP HANA 1.0 SP12 revision 122.04 and SAP HANA 2.0 and onwards:
    ./hdblcm --action=update_components --component_dirs=<Extracted_APL_folder_path>/installer --SAP HANA 1.0 SP12 revision 122.07: ./hdblcm --action=update --component_dirs=<Extracted_APL_folder_path>/installer

    Upgrading SAP HANA APL

    • Stopping the SAP HANA database
    • Installing SAP HANA APL
    • Restarting the SAP HANA database
    • Deploying the delivery unit
    Note
    
        Use the resident lifecycle management tool of SAP HANA hdblcm or hdblcmgui.
        Purge the cache after reinstallation or upgrade.

    Purging the Cache

    call "SAP_PA_APL"."sap.pa.apl.base::CLEANUP"(1,?);

    Checking the Installation

    Run the following SQL statements to check that the tables contain SAP HANA APL entries.

    -- check that APL functions are there
    
    select * from "SYS"."AFL_AREAS";
    select * from "SYS"."AFL_PACKAGES";
    select * from "SYS"."AFL_FUNCTIONS" where AREA_NAME='APL_AREA';
    select "F"."SCHEMA_NAME", "A"."AREA_NAME", "F"."FUNCTION_NAME", "F"."NO_INPUT_PARAMS", "F"."NO_OUTPUT_PARAMS", "F"."FUNCTION_TYPE", "F"."BUSINESS_CATEGORY_NAME"     
    from "SYS"."AFL_FUNCTIONS_" F,"SYS"."AFL_AREAS" A  where "A"."AREA_NAME"='APL_AREA' and "A"."AREA_OID" = "F"."AREA_OID";
    select * from "SYS"."AFL_FUNCTION_PARAMETERS" where AREA_NAME='APL_AREA';

    refer to https://help.sap.com/viewer/7223667230cb471ea916200712a9c682/1909/en-US/7fa8b3b2ef70404480dac49753d7b179.html

    每天进步一点点,多思考,多总结 版权声明:本文为CNblog博主「zaituzhong」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
  • 相关阅读:
    saiku导出excel单元格格式与中文列宽自动适应
    saiku中过滤窗口优化及隐藏异常报错
    saiku之固定维度(必选维度)
    saiku中多cube排序问题
    saiku中默认级别all的国际化
    Nginx基本配置、性能优化指南
    Nginx安装部署
    64位虚拟机中安装CentOS_6.7
    memcached全面剖析–5. memcached的应用和兼容程序
    memcached全面剖析–4. memcached的分布式算法
  • 原文地址:https://www.cnblogs.com/tingxin/p/12431512.html
Copyright © 2011-2022 走看看