Flo
4/24/2018 - 1:30 PM

Fix user

Sets the user's password, clears any deactivation-flag and sets the last password change far into the furute.

update u_users
   set password = aax_zentral.get_password_hash('123'),
       deactivated = 0,
       last_password_change = SYSDATE + 30000
 where LOWER(login) = LOWER('ErlerF');