Network Management

How to reference the previous and latest installed Orion modules

The article will help confirm what previous modules and versions were installed and upgraded in the SolarWinds environment by reviewing the ConfigWizardLog table.

First published date

12/15/2020 12:05 AM

Last published date

12/15/2020 12:05 AM

Overview

  • The steps will help review the Orion modules and versions that were installed and upgraded in the SolarWinds environment by reviewing the ConfigWizardLog table.
  • The steps can be used to reference modules that were installed prior to an Orion server or SQL server crashing to be able to recover the environment.

Product section

Network Performance Monitor

Cause

n/a

Resolution

Using Database Manager

  • Open Database Manager
  • Click Add Orion Server
  • Expand the Orion database and search for the ConfigWizardLog table
  • Double-click on the ConfigWizardLog table
  • Click Execute query
  • Review the information for the previous and latest Orion modules installed

Use SQL Server Management Studio

  • Right-click on the Orion database and select New Query
  • Enter the query below
-- Scripts are not supported under any SolarWinds support program or service.
-- Scripts are provided AS IS without warranty of any kind. SolarWinds further
-- disclaims all warranties including, without limitation, any implied warranties
-- of merchantability or of fitness for a particular purpose. The risk arising
-- out of the use or performance of the scripts and documentation stays with you.
-- In no event shall SolarWinds or anyone else involved in the creation,
-- production, or delivery of the scripts be liable for any damages whatsoever
-- (including, without limitation, damages for loss of business profits, business
-- interruption, loss of business information, or other pecuniary loss) arising
-- out of the use of or inability to use the scripts or documentation.]
 
SELECT top 1000* FROM [dbo].[ConfigWizardLog]
order by logid desc
  • Review the information for the previous and latest Orion modules installed