NC65 用户密码重置

it2023-02-10  72

-- 设置NC 用户admin密码为1 

update sm_user sm set sm.user_password=  

  'U_U++--V'||LOWER( RAWTOHEX( UTL_RAW.CAST_TO_RAW( sys.dbms_obfuscation_toolkit.md5(input_string =>  sm.cuserid||'1'/**要设置的密码*/) ) ) ) 

 where sm.user_code ='admin';

-- portal 用户admin密码为1

update cp_user sm set sm.user_password=  

 'U_U++--V'||LOWER( RAWTOHEX( UTL_RAW.CAST_TO_RAW( sys.dbms_obfuscation_toolkit.md5(input_string =>  sm.cuserid||'1'/**要设置的密码*/) ) ) ) 

where sm.user_code ='admin';

最新回复(0)