Resolved security concern pertaining to too many inadvertent Query executions while designing a Query.
Query Builder now features the ability to Preview data from each Data Connection individually. In future releases this service will enable automatic anomalies highlighting, trendlines, and predictions in Dashboards.
Insite Analytics now features a service capable of classifying data produced by Query execution by data type and perform statistical analysis on that data.
Insite Analytics user can query multiple Data Connections at once and combine the results in a single Dashboard Widget, Chart or Table.
Users can link a query to several data connections at once.
#Psequel query template driver#
Users can link a query to a specific driver type having it linked to all the data connections of that type in the future.
Creating Data Connections of this type signals to Insite Analytics that the connection points to a known BRMS schema and is ideal for visualizing BRMS data. Insite Analytics now features a BRMS specific Data Connection type. In Insite Analytics 1.3, HelpSystems also delivers a set of Query Templates designed to aid BRMS users in monitoring of their backups.
Insite Analytics now allows the user to create a new Query from a predefined Template Query and customize the new Query to fit their needs.
Query Builder is now capable of converting some SQL statement from Advanced Mode back to Wizard Mode.
On Dashboard Widgets that contain data from multiple Data Connections, Insite Analytics now support the ability to drill down into data coming from both a specific data point and a specific Data Connection.
Fixed issue where Data Connection metric is removed when Multi-connection Query shows errors on Data panel.
#Psequel query template update#
Update icons to Insite 2.0 svg icon set.
New option to set widget's data source to ALL datasources.
Added ability to apply a Data Decorations to any field in a Table.
#Psequel query template download#
Option to add data connection value to output when download as CSV.
Dashboard analytics tab requires valid IA license.
The null value appeared under Pie chart if the user selects grouping filed "Last Update" and legends "Inventory ID".ĭecember 2019 Version: 1.5.0 New Features The custom column formatting was not showing correct format in Query and in Dashboard. In a parameterized Query, clicking Global Filter the query name isn't visible. When trying to connect to 100 BRMS connections, received error ‘Server not Responding’. When applying data decorations to widget on a dashboard, they appeared incorrect in the Preview. On newly created BRMS teamplate dashboards using the BRMS_Backups dashboard, the 'Successful Backups' and 'Failed Backups' widgets show the same resultĪ query that with multiple data connections using a COUNT(*) function had no chart elements appear on the dashboard.ĭrill down from a chart that produced more than 1000 records caused ‘too much data’ error.
Fixed defect that prevented charting over queries containing UNION.
Upgraded Jackson version to remove security vulnerability.
Allow the use of whitespace characters in Data Connection aliases.
Removed duplicate mapping value from BRMS status codes.
Support added to retrieve JSON data from a RESTFul web service using Web Service APIs and Web Service Connections.
Insite Analytics now supports Common Table Expressions in Advanced Mode Queries.
Insite Analytics adds connection support for DB2 installed on LUW (Linux, Unix, Windows) servers.
There are no updates for historical releases unless specifically listed.
The currently shipping version of HelpSystems Insite is 3.07.
This AND & OR example would return all employee_id, last_name, and first_name values from the employees table whose the last_name is 'Smith' OR whose last_name is 'Anderson' and the state is 'Florida' OR whose last_name is 'Ferguson', the status is 'Active' and the state is 'California'. OR (last_name = 'Ferguson' AND status = 'Active' AND state = 'Calfornia') OR (last_name = 'Anderson' AND state = 'Florida') The next example takes a look at a more complex statement.įor example: SELECT employee_id, last_name, first_name Just like you learned in the order of operations in Math class! The parentheses determine the order that the AND and OR conditions are evaluated. This AND & OR example would return all employees that live in Miami whose first_name is 'Sarah' and all employees whose employee_id is less than or equal to 2000. WHERE (city = 'Miami' AND first_name = 'Sarah') Let's look at an example that combines the AND and OR conditions in a SELECT statement.