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.
- Verify webNetwork servers are 6.3.0.197 or higher
- Make a backup of your Audit database using native SQL tools
- Connect to SQL server using native tools
- Run commmand - SELECT * FROM swaudit.auditdata where actionid=107 and data3 is not null;
- 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)
- 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)
- 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" ));
- 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" ));
- 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" ));
- 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
Change Reset Password Button Text
Change the text of the "Reset Password" button on the UW Login Page How to change the text of the Reset Password button on the Login Page. Login to webNetwork and open webAdmin on your Relay Central Server Expand Customization Center Expand Tenants ...
Remove Reset Password Button From Login Page
Remove the Reset Password Button from the Login Page How to remove the Reset Password button from the Unified Workspace login page. Login to webNetwork and open webAdmin on your Relay Central Server Expand Customization Center Expand Tenants Expand ...
Lenovo Unified Workspace End-of-Life Questions and Answers
As of January 31st 2024, Lenovo Unified Workspace (formerly Stoneware WebNetwork) is no longer supported. This means that we no longer provide licenses, downloads, updates, patches, or technical assistance for this product. If you have any questions ...
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 ...
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 ...
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 ...
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 ...
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. ...