Data Providers
Last updated
Was this helpful?
Data Provider editing and creation is an advanced topic. It is recommended to use the existing Data Providers if you create your own Dashboards. Please reach out to our Support Team for assistance.
Additionally, editing and creating data providers is currently unavailable for SaaS implementations of the Platform.For security reasons, SaaS environment signed data providers are only permitted. Please reach out to our Support team for assistance.
A Dashboard uses results from queries to display data in meaningful ways. Data Providers are used to create the query. A Data Provider can include many data sets. It is recommended to create a single Data Provider for each Dashboard, but it is, of course, possible to use Data Sets from any Data Provider in a single Dashboard.
Data Providers are a platform-level component and can therefore be accessed when viewing any Adaptiva product from the side navigation. Navigate to Dashboards > Data Providers.
There are currently two types of Data Providers:
Adaptiva SQL - queries data from the Adaptiva SQL database
Workflow - executes a workflow to return data
Data sets include the data you want to extract to display depending on the chosen dashboard widget. For instance, you have the option to determine what data to include in a table widget column(s). This data is requested by either a SQL query or a Workflow depending on the data provider type chosen.
For this example, we will be querying from the SENSOR_200000017_DATA table (BIOS sensor). The columns we will be selecting will be the Client ID, the BIOS Name, the Manufacturer, the SerialNumber, and the SMBIOSBIOSVersion.
Select Dashboards > Data Providers from the side navigation under Platform Features.
Select + New.
Enter a unique data provider Name and Description to help the user understand the result of the data provider.
Select Adaptiva SQL from the Data Provider Type dropdown.
Select + Add Data Set.
Enter a unique data set Name and Description.
Select + Add Column and create a column to match data in your SQL query.

Enter the Data Query in the code block field. For example:
SELECT _SOC_ClientId, [Name], Manufacturer, SerialNumber, SMBIOSBIOSVersion
FROM SENSOR_200000017_DATAEnter the Count Query.
SELECT COUNT(*) FROM (
SELECT _SOC_ClientId, [Name], Manufacturer, SerialNumber, SMBIOSBIOSVersion
FROM SENSOR_200000017_DATA
) X(Optional) Select desired options for Default Sort Configuration.
(Optional) If the SQL query takes input parameters, select + Add Properties.
Click Submit.
Click Save
Workflow data sets can be used to query data outside of the Adaptiva database, this is an advanced use case and we recommend reaching out to our Support team for assistance.
If you choose to use a Workflow data set, you will still follow the majority of the steps above except:
Select Workflow from the Data Provider Type dropdown.
When adding a data set, select Browse to choose a workflow you'd like to use.
Last updated
Was this helpful?
Was this helpful?