OCTOBOARD
Italiano
PREZZI
RISORSE
ACCESSO
PROVA
PROVA
Italiano

MODELLI PER LA REPORTING AUTOMATIZZATO

Seleziona il modello e utiliza i nostri strumenti di creazione di report per vendite, finanze, SEO e PPC per generare report automatizzati o creare dashboard di marketing online.
MOSTRA TUTTI I DASHBOARD
HOME / DASHBOARD / ORACLE

ORACLE DASHBOARD

Oracle database connection.

Octoboard data dashboard: Oracle database dashboard in octoboard
Use this Oracle 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.
Note
Please use standard Oracle connection parameters - database name, host name, ip address, port, login details and security settings.
343
PROVALO SUBITO
Ultima revisione:
8-Mar-23
Dashboard:
Report:
Portali clienti:
White label:
Aggiornamento dati:
Approfondimenti sui dati:
Output Office TV:
Multi-cliente:

ORACLE METRICHE

ORACLE NUMERIC

Oracle Numeric widget
Descrizione
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"
USA QUESTA METRICA

ORACLE CATEGORY

Oracle Category data widget
Descrizione
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
USA QUESTA METRICA

ORACLE HISTORICAL

Oracle Historical data widget
Descrizione
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.
USA QUESTA METRICA