There is no provision in the user interface to unlock accounts. To unlock accounts, one must do so manually in the database.
Unlock SEP console user accounts:
- Log on as an administrator on the database server.
- Execute the following command from a command window:
- On the osql prompt enter the following lines (the first two lines end with a semicolon):
- For MSSQL 2000/2005 with multiple instances, you will also need to specify the server_nameinstance_name using the -S switch.
- To get a list of instances, type the following from a command window:
- Execute the following command from a command window:
- Then run the commands in #3 above.
osql -E
use Reporting;
update adminuser set Locked=” where user_name=’USERNAME’;
go
exit
Replace USERNAME with the name of the user to be unlocked.
osql –L
osql -E -S SERVER_NAMEINSTANCE_NAME