17-05-22 07:24 AM
I tried many videos on YouTube to reset my password but nothing works
Could anyone help please?
Answered! Go to Answer.
17-05-22 07:38 AM
SET salt='bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=',
hash='9XkueyLzhbhRUMoKedsN3l7ChDmfS811IDymP8ZCEv8=' WHERE
userid=(SELECT userid FROM BPAUser WHERE username='admin')
AND active=1;
17-05-22 07:38 AM
SET salt='bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=',
hash='9XkueyLzhbhRUMoKedsN3l7ChDmfS811IDymP8ZCEv8=' WHERE
userid=(SELECT userid FROM BPAUser WHERE username='admin')
AND active=1;
13-10-22 11:10 AM
13-10-22 06:48 PM
Hi @Rhian.Lowe,
Blue Prism can't run without a SQL server database firstly as you can also see from the following installation guide: Install and configure trial and learning editions
To access the tables within database and execute SQL scripts, you need a software called SQL Server Management Studio
Once you are able to install the software, login to the server which is configured by default while installation as shown below:
Blue Prism Configured Database:
Same table you should be able to view inside your SSMS software once connected to server:
In order to execute script, you need to click on the 'New Query' icon or press 'CTRL+N' which opens up a new scripting window:
UPDATE BPAPassword SET salt='bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=',
hash='9XkueyLzhbhRUMoKedsN3l7ChDmfS811IDymP8ZCEv8=' WHERE
userid=(SELECT userid FROM BPAUser WHERE username='admin')
AND active=1;
Once, you have written the script click on the 'Execute' button or press 'F5':