Server Rename SQL Instance Rename

Subject: Server Rename SQL Instance Rename –For Default Instance sp_dropserver <old_name>; GO sp_addserver <new_name>, local; GO –Restart the instance of SQL Server. –/*For a renamed computer that hosts a named instance of SQL Server, run the following procedures:*/ sp_dropserver <old_name\instancename>; GO sp_addserver <new_name\instancename>, local; GO –Restart the instance of SQL Server

Read More

Merging Word Documents

Subject: Merging Word Documents Microsoft Word 2013: Combine and Merge Multiple Documents While working on documents using Microsoft Office Word, sometimes users may need to combine and merge many multiple documents into one single document. For example, when an author is writing a novel book by saving each chapter as individual documents this makes a…

Read More

Refreshing the Management Reporter Data Mart from Windows PowerShell Using “Reset-DatamartIntegration “

Subject: Refreshing the Management Reporter Data Mart from Windows PowerShell Using "Reset-DatamartIntegration " REBUILD Management Reporter Datamart from Powershell: 1. Backup The ManagementReporter and Data Mart (ManagementReporterDM – default name – might be different) databases. 2. Log onto the server where the MR Server components are installed and open Powershell as Administrator. 3. Navigate to…

Read More

Get Installed Features from Dynamics DB Query

— List of Company IDs select CMPANYID, INTERID, CMPNYNAM from DYNAMICS..SY01500 — List of Product Versions for Company specified by Database select U.*, C.INTERID, C.CMPNYNAM from DYNAMICS..DU000020 U join Dynamics..SY01500 C on C.CMPANYID = U.companyID where C.INTERID = ‘TWO’ — Enter desired Company DB name order by U.PRODID — List of Product Versions for System…

Read More