修改SAP数据库用户密码的参考

简介: 修改SAP数据库用户密码的参考

不知道楼主参考的是哪个NOTE,不过ORA -1017的错误,ORA 1017错误,密码不对的解决办法:

SQL> DROP TABLE OPS$PRDADM.SAPUSER;
Table dropped.
SQL> CREATE TABLE OPS$QASADM.SAPUSER
   2   (USERID VARCHAR2(256), PASSWD VARCHAR2(256));
Table created.
SQL> INSERT INTO OPS$QASADM.SAPUSER VALUES('SAPPRD', 'i密码');

1 row created.

brconnect -u system/'数据库管理密码'   -f chpass -o SAPPRD -p ‘上一条SQL插入记录的密码'

前提是你的OPS$QASADM用户是正确的

然后用qasadm用户:R3trans -d

返回的代码是0000,就应该没问题了。如果不是0,把trans.log贴上来再看

Changing Database User Passwords with BRCONNECT UseYou can use BRCONNECT to change the password of database users, such asSAPR3orSAP<SAPSID>.Donotleave the passwords for the database user set to the default values.Procedure...For more information, see-f chpass.ResultBRCONNECT stores the new password as follows:
UserTableEncryption (from Release 4.5B)SAPR3"OPS$<ORACLE_SID>ADM".SAPUSERStored asSAPR3-CRYPTSAP<SAPSID>"OPS$<SAPSID>ADM".SAPUSERStored asSAP<SAPSID>-CRYPT
In the case of theSAP<SAPSID>user,<SAPSID>refers to the SAP System ID. For example, if the SAP System ID isC11, theSAP<SAPSID>user isSAPC11, stored in the tableOPS$C11ADM.SAPUSER. The first character of<SAPSID>must be a letter and there is no distinction between uppercase and lowercase.Database users other thanSAPR3andSAP<SAPSID>arenotstored inSAPUSERdatabase tables.

采用drtools修改SAPsid数据库有用户密码,不过在r34.7下应该用sapdba来修改

相关文章
|
5天前
|
SQL 数据库 索引
关于 SAP ABAP REPOSRC 数据库表在 HANA 中的 DDL Definition
关于 SAP ABAP REPOSRC 数据库表在 HANA 中的 DDL Definition
27 1
关于 SAP ABAP REPOSRC 数据库表在 HANA 中的 DDL Definition
|
5天前
|
关系型数据库 MySQL 数据库
mysql数据库密码
mysql数据库密码
|
5天前
|
数据库 存储 监控
什么是 SAP HANA 内存数据库 的 Delta Storage
什么是 SAP HANA 内存数据库 的 Delta Storage
21 0
什么是 SAP HANA 内存数据库 的 Delta Storage
|
4天前
|
存储 安全 数据库
什么是 SAP ABAP 数据库表的 Display Maintenance Allowed with Restrictions
什么是 SAP ABAP 数据库表的 Display Maintenance Allowed with Restrictions
20 3
|
5天前
|
移动开发 前端开发 数据库
几种经典的支持数据库的表单设计器参考
几种经典的支持数据库的表单设计器参考
10 0
|
5天前
|
SQL Oracle 关系型数据库
SAP* DDIC密码丢失如何处理
SAP* DDIC密码丢失如何处理
10 2
|
5天前
|
安全 关系型数据库 MySQL
QL数据库root账户密码忘记两种处理方法(保有效)
QL数据库root账户密码忘记两种处理方法(保有效)
|
5天前
|
数据库
如何查询 SAP ABAP 系统里消耗存储空间排名前几位的数据库表试读版
如何查询 SAP ABAP 系统里消耗存储空间排名前几位的数据库表试读版
11 0
如何查询 SAP ABAP 系统里消耗存储空间排名前几位的数据库表试读版
|
5天前
|
数据库 存储 BI
SAP ABAP CDS View 源代码存储的数据库表揭秘和其他相关数据库表介绍试读版
SAP ABAP CDS View 源代码存储的数据库表揭秘和其他相关数据库表介绍试读版
16 0
SAP ABAP CDS View 源代码存储的数据库表揭秘和其他相关数据库表介绍试读版
|
3天前
|
关系型数据库 MySQL API
实时计算 Flink版产品使用合集之可以通过mysql-cdc动态监听MySQL数据库的数据变动吗
实时计算Flink版作为一种强大的流处理和批处理统一的计算框架,广泛应用于各种需要实时数据处理和分析的场景。实时计算Flink版通常结合SQL接口、DataStream API、以及与上下游数据源和存储系统的丰富连接器,提供了一套全面的解决方案,以应对各种实时计算需求。其低延迟、高吞吐、容错性强的特点,使其成为众多企业和组织实时数据处理首选的技术平台。以下是实时计算Flink版的一些典型使用合集。
19 0