cjt本地账号密码修改脚本
cjt本地账号密码修改sql脚本
您好:
方法一替换成a123456
--查询相关用户的ID账套库执行需要有 clouduserid的用户在专属云中才能进入。
select id,CloudUserId,*from eap_user
--对应用户的密码修改成a123456如查询出来的用户ID等于xxx账套执行
update EAP_User set Password='1HeIewY25dh/ecwlyZ19yQ==' where id='xxx'
--sss表示账套号xxx表示用户的id
update [UFTSystemDec]..EAP_User set Password='1HeIewY25dh/ecwlyZ19yQ==' where cacc_num='sss' and userid='xxx'
方法二替换成其他账套相同用户可以进入账套的密码
--查询到需要修改用户的CloudUserId
select CloudUserId,*from EAP_User
--查询出其他账套对应的的Password
select Password,*from UFTSystemDec]..EAP_User where CloudUserId='查询出来的CloudUserId'
---替换复出来的账套的password
UPDATE UFTSystemDec]..EAP_Use SET Password='复制的password' where cacc_num='sss' and userid='xxx'
update EAP_User set Password='复制的password' where id='xxx'
标签:账套,--,xxx,账号密码,本地,EAP,Password,cjt,User
From: https://www.cnblogs.com/wherehappens/p/17622616.html