Analytics Link report not working after upgrading to 6.3.0.x

Analytics Link report not working after upgrading to 6.3.0.x

Problem:  Analytics Link reports not loading after upgrading to 6.3.0.x


Cause:  We discovered in about version 6.3.0.127 that the ActionID that define the events for the Audit database were changed thus causing the Link Report in the Analytics tile to not function.  The data for ActionID 107 and higher were incremented by 1, thus causing the reports to search for invalid data.


Prerequisite(s):
  • webNetwork upgraded to 6.3.0.197 or higher
  • Analytics setup in MySQL or MS SQL server
  • Know your Analytics database/schema name
  • Access to native SQL server tools

Solution(s):  You'll need to manually adjust the logs for the data range that they were effected.  The following example will show you how to fix for MySQL.  Make sure to replace swaudit for your own database/schema name if different.  For MS SQL, replace swaudit.auditdata for dbo.auditdata.
  1. Verify webNetwork servers are 6.3.0.197 or higher
  2. Make a backup of your Audit database using native SQL tools
  3. Connect to SQL server using native tools
  4. Run commmand - SELECT * FROM swaudit.auditdata where actionid=107 and data3 is not null;
  5. Look for the first entry in the results and record the datetime field to get the start date (ex: 2015-07-01 00:01:55)
  6. Look for the last entry in the results and note the datetime filed to get the end date (ex: 2015-10-02 23:53:09)
  7. Run command - update swaudit.auditdata set actionid=106 where (actionid=107 and (datetime>="2015-07-01 00:01:55" and datetime <="2015-10-02 23:53:09" ));
  8. Run command again, but increment actionid - update swaudit.auditdata set actionid=107 where (actionid=108 and (datetime>="2015-07-01 00:01:55" and datetime <="2015-10-02 23:53:09" ));
  9. Repeat until step 8 until actionid=120 where (actionid=121 and (datetime>="2015-07-01 00:01:55" and datetime <="2015-10-02 23:53:09" ));
  10. Test Analytics Link report and reports should load normally again

    Can't find the KB

    Unable to find the KB to address your issue ?  

      • Recent Articles

      • Lenovo Unified Workspace End-of-Life Questions and Answers

        Will the shutdown of LUW servers and access to downloads affect my server licensing? No, the shutdown of the customer servers and access to the product and licensing downloads will not affect your server licensing. This license is downloaded and ...
      • How do I determine my Unified Workspace license expiration date?

        The best method for determining the licensing information including the expiration date of your Unified Workspace license: Login to your 8090 management console on each server This may take remoting into each LUW server and relay, opening a browser, ...
      • Lenovo Unified Workspace 7.0.2.13 Released

        Highlights of Unified Workspace 7.0.2.13 Before you install: Please view the installation notes here. 7.0.2.13 requires a 7.0 license file. Below is a list of enhancements and fixes released in Unified Workspace 7.0.2.13 Fixed external storage ...
      • LanSchool Documentation Guides

        LanSchool Classic Teacher Console The LanSchool Teacher Console is the interface teachers will use to manage their classroom and students. It contains all the tools necessary for a teacher to effectively interact with students and create a ...
      • Lenovo Unified Workspace 7.0.1.41 Released

        Highlights of Unified Workspace 7.0.1.41 Before you install: Please view the installation notes here. 7.0.1.41 requires a 7.0 license file. Below is a list of enhancements and fixes for Unified Workspace 7.0.1.41 Updated Log4j Updated Java Updated ...
      • Related Articles

      • Running Analytics Migration Wizard

        After applying a Service Pack, not all of the Analytics reports work.  Some show an error: Unable to Run Report The database that contains the information for this report is not currently available. Please try again later.  If you continue to have an ...
      • New Analytics feature in webNetwork 6.1+

        In webNetwork 6.1 we added a new Analytics report that essentially replaces the old reports for querying the relay log information.  The old reports for many installs were called:  Authentication Report  Complete Report  Day of Month Report  Error ...
      • Working with Binary Data in Report Services

        Quick Start Guide - Binary Data This tutorial is designed as a quick "How Do I Work With Binary Data" tutorial.  It walks through the steps necessary to upload an image to a database.  Every webNetwork 6.0 installation ships with a database called ...
      • Configure Analytics features in webNetwork 6.1+

        Basic Steps: Create new database called "swaudit" Run the appropriate script file located in /stoneware/hsql/dbscripts directory Give access to the appropriate DB user accounts Create DB connection object OR reuse existing webNetworkAuditDB object ...
      • Slingshot will not install after upgrading to 6.4.0.x

        Symptoms: Slingshot applications are unable to install the Slingshot application for kicking off slingshot applications.  Error is received "Unable to contact server." Issue: TLSv1 is disabled by default in the stoneware/config/excludeProtocols file. ...