How to check which SQL DB is linked with Sharepoint?
How to check which SQL DB is linked with Sharepoint? Issue: How to check which SQL DB is linked with Sharepoint? AX: AX 2012 R3OS: Windows Server 2012 R2SQL: SQL 2014SharePoint: Solution: Open SQL> Start RUN>SSMS> Select the DB> SELECT program_name, count(*) FROM Master..sysprocesses WHERE ecid=0 GROUP BY program_name ORDER BY count(*) desc Now I…