OCTOBOARD
Français
TARIFS
RESSOURCES
LOGIN
ESSAI
ESSAI
Français

GALÉRIE DES DASHBOARDS ET RAPPORTS

Sélectionnez l'application et créez votre premier tableau de bord.
TOUS LES DASHBOARDS
RETOUR / DASHBOARDS / SQL SERVER

SQL SERVER DASHBOARD

Microsoft SQL Server database connection.

Octoboard data dashboard: Microsoft sql server database dashboard in octoboard
Use this Miscrosoft SQL Server database connection to add historical data widgets, pie charts and numeric widgets to Octoboard business performance dashboards, automated reports and white label client portals.

For more details on how to connect your database to Octoboard please visit this Knowledge Base post.
Remarques
Please use standard Microsoft SQL Server connection parameters - database name, host name, ip address, port, login details and security settings.
251
ESSAYEZ MAINTENANT
Version:
17-Mar-23
Dashboards:
Rapports:
Portails clients:
White label:
Actualisation des données:
Analytiques des données:
Sortie en boucle télé:
Multiclient:

SQL SERVER MÉTRIQUES

NUMÉRIQUE DU SERVEUR SQL

Microsoft SQL Server Numeric widget
Description
This widget displays a single numeric value. SQL statement should return a single column. The very first value will be read and displayed in the widget. In the following example, SQL statement returns population of USA:

SELECT population FROM countries WHERE country="USA"
UTILISEZ CETTE MÉTRIQUE

CATÉGORIE DU SERVEUR SQL

Microsoft SQL Server Category data widget
Description
Category widget displays values in tables or pie charts. SQL statement should return two columns. First column should contain category name, second column should return numeric values.

In the following example, SQL statement retrieves country names and country population. Pie chart will display countries ranked by population size:

SELECT country, population FROM countries
UTILISEZ CETTE MÉTRIQUE

HISTORIQUE DU SERVEUR SQL

Microsoft SQL Server Historical data widget
Description
Historical data widget displays historical data in a column, line or area graph. SQL statement is expected to return two columns. The first column should have dates, second one should have values.

In the following example, SQL statement retrieves shares price for Apple.

SELECT date, price FROM stock WHERE ticker="AAPL"


Make sure you sort results by date. Sequence of returned data raws is important. The platform will display first 1000 rows that it retrieves.
UTILISEZ CETTE MÉTRIQUE