• How to delete SAP* from HANA Tenant database(HANA数据库下如何删除SAP*账户)


    How to delete SAP* from HANA Tenant database

    1.如何登录HANA的多租户(TDC)数据库

    1.1 采用key的方式登录

    使用SAPS4端对应的SAP账户,比如S4D的账户为s4dadm
    su - s4dadm
    采用key的方式登录

     如何查找对应的KEY,可以使用hdbuserstore命令查看

     如上图所示,对应的Key为DEFAULT
    我就可以用这个KEY去登了数据库了
    hdbsql -U DEAFULT

     老应出版,翻版必究;如要不究,记得知会。。。。。

    1.2 采用命令行登录

    And for tenant level license, you can connect to the specific tenant database to perform below steps.

    1. Logon as sidadm user, connect to the Database via hdbsql.
    • For single container system, please try below command:
    > hdbsql -n <hostname>:3<instance no.>15 -i <instance no.> -u <DB username> -p <password>
    • For MDC system, please try connecting to the system DB by below command:
    > hdbsql -n <hostname>:3<instance no.>13 -i <instance no.> -u <DB username> -p <password>

    
    
    • To install license in a specific tenant, please maintain the SQL port of the tenant DB in the command accordingly.
    > hdbsql -n <hostname>:3<instance no.><tenant SQL port> -i <instance no.> -u <DB username> -p <password>
    如:

    hdbsql -n sap-sbx-db01:31015 -i 10 -u SAPHANADB -p 'Sap#2020'

      老应出版,翻版必究;如要不究,记得知会。。。。。

    2.检查使用SAP*是否存在

    hdbsql=> select count(*) from usr02 where mandt = '000' and bname = 'SAP*';

    如上图所示是否有内容,如有,按\q退出。
    也可用命令
    hdbsql=> select count(*) from usr02 where mandt = '000' and bname = 'SAP*';

     

      如上图所示是否有内容,如有,按\q退出。

     老应出版,翻版必究;如要不究,记得知会。。。。。

    3.删除SAP用户


    hdbsql=> delete from usr02 where mandt = '000' and bname = 'SAP*';
    不需要commit命令提交。

     I'm pretty sure that you need to log in with the SAPABAP1 user and then run the SQL statement, since that user owns the schema. It should have the same password as your DDIC or SAP* users.

  • 相关阅读:
    jdk源码剖析三:锁Synchronized
    ASP.NET的session操作方法总结
    C#文件相同性判断
    C#的DataTable操作方法
    C#二进制流的序列化和反序列化
    C#常用的IO操作方法
    C#缓存操作
    CLR中的程序集加载
    Oracle数据库的SQL分页模板
    奇妙的NULL值,你知道多少
  • 原文地址:https://www.cnblogs.com/weikui/p/16100901.html
Copyright © 2020-2023  润新知