• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

How do I make reinstalled MSSQL to load plesk databases

J

JuanT

Guest
How do I make reinstalled MSSQL to associate databases with plesk users

I reinstalled SQL server 2005 on plesk 9.0 because it was not working.
The configuration was lost.

All the databases could be attached from backup to the server but how can I make it associate the databases with the plesk users?

Does anyone know a command to reconfigure mssql 2005 in order to load the database information from plesk users?


Thanx
 
Last edited by a moderator:
Hi,

You can add user to mssql database with mssqlmng.exe utility like this:

mssqlmng.exe --add-user --server="localhost" --login="sa" --password="123qwe" --database="mydomains_" --new-user-login="xoxo" --new-user-password="123qwe"

To get all mssql databases and appropriate database users from Plesk db use this command:

dbclient.exe --direct-sql --sql="select du.login,du.passwd, db.name from db_users du, data_bases db where du.db_id=db.id and db.type='mssql'"
 
Back
Top