Studio failed to connect to database with error Id:XDDS:9B560459.
Step1.Check the event log of SQL server, because large transaction log may cause such error message. If transaction log is full, try to shrink transaction log
Remove mirror from the primary SQL Server
Modify the recovery model to simple
Right click the database and shrink the transaction log
Backup the database and transaction log, copy them to Mirror database server
Restore the backup with NORECOVERY option on Mirror database server
select the database and select mirror task on primary database server
click Configure Security to start Mirroring wizard
Select Yes on Witness server page
Step2: Try to restart SQL Server and DDC if possible
Step3: Use ODBC to connect to database to test if database can accept remote connection
Open ODBC on any windows system, Click Add and select SQL Server and click Finish to create a New Data Source to SQL Server.
Give a name of the Data Source and select the SQL server name you want to connect, then click Next > Next > Finish > Test Data Source. If the DB can accept remote connection, TESTS COMPLETED SUCCESSFULLY message is displayed.
Other troubleshooting steps including but not limited to checking the 1433 port of SQL Server and "Allow remote connection to this server configurations" Configuration of Database.