We have a monetdb database which we can no longer get in to. The password we have recorded and also stored in the user's SQL client no longer works. Is there any way to bypass this and recover the password or the data?
Asked
Active
Viewed 166 times
1 Answers
1
You can reset your password by executing following MAL commands in mserver prompt:
oldp:=clients.getPasswordHash("username");
newp:=clients.backendsum("newpassword");
clients.changePassword(oldp, newp);

Sherzod Mutalov
- 21
- 3