cancel
Showing results for 
Search instead for 
Did you mean: 

issue comes after resetting the password of SYSTEM user???

Former Member
0 Kudos

Hi experts,

if there is an issue comes after resetting the password of "SYSTEM" user id in oracle 10g, ECC6.0

ecc 6.0

oracle 10g

HPUx

Regards,

vivek

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member188883
Active Contributor
0 Kudos

Hi Vivek,

Ideally Oracle User "SySTEM" is not used in any SAP operations. Database Schema user is used in all the SAP operations.

So changing the password of user SYSTEM should not impact your regular business operations.

Regards,

Deepak Kori

Former Member
0 Kudos

alter user system identified by "password"

command is ok or try other way,..

Former Member
0 Kudos

It is ok, but I rather to use brtools in the SAP environment;

brconnect -c -u / -f chpass -o SYSTEM -p <password>

Best regards,

Orkun Gedik

Former Member
0 Kudos

This is ok and will work.

BR*Tools is another option.

Thanks

Former Member
0 Kudos

Orkun's suggestion is already there

Thanks

former_member188883
Active Contributor
0 Kudos

Hi Vivek,

Using brtools you won't be able to change the password for database users like SYS and SYSTEM.

You need to use SQL command

SQL> alter user system identified by <password>;

Regards,

Deepak Kori

Former Member
0 Kudos

>> Using brtools you won't be able to change the password for database users like SYS and SYSTEM.

Are you sure about this? I am sorry but it is not correct. You are able to change these passwords by using brtools

Best regards,

Orkun Gedik

Former Member
0 Kudos

thanks to all