SEP: Reset SEP console user account passwords

If the reporting database is a MSDE database, you can use the osql command. If the database is Microsoft SQL Server, use the SQL Server Enterprise Manager. Before you begin: You must know the sa user password. In the examples below, the password is: password, and the Reporting user password is reset to: resetme123 If the user account is locked, see KB document 2006021009444048 Resetting locked passwords for Reporting Server This method is not supported by Symantec. Reset the password with the osql command If the reporting database is a MSDE database, you can use the osql command To reset […]

Read more

SEP: Unlocking locked down root/admin user accounts

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:         osql -E On the osql prompt enter the following lines (the first two lines end with a semicolon):         use Reporting;         update adminuser set Locked=” where user_name=’USERNAME’;         go         exit          Replace USERNAME with the name of the user to be unlocked. For MSSQL 2000/2005 with multiple instances, you will also need to […]

Read more