console/statistics/index.sql
SELECT 'dynamic' AS component, sqlpage.run_sql('shell/shell.sql') AS properties;
SELECT 'breadcrumb' as component;
WITH RECURSIVE breadcrumbs AS (
SELECT
COALESCE(abbreviated_caption, caption) AS title,
COALESCE(url, path) AS link,
parent_path, 0 AS level,
namespace
FROM sqlpage_aide_navigation
WHERE namespace = 'prime' AND path='console/statistics/index.sql'
UNION ALL
SELECT
COALESCE(nav.abbreviated_caption, nav.caption) AS title,
COALESCE(nav.url, nav.path) AS link,
nav.parent_path, b.level + 1, nav.namespace
FROM sqlpage_aide_navigation nav
INNER JOIN breadcrumbs b ON nav.namespace = b.namespace AND nav.path = b.parent_path
)
SELECT title ,
sqlpage.environment_variable('SQLPAGE_SITE_PREFIX') || '/'||link as link
FROM breadcrumbs ORDER BY level DESC;
-- not including page title from sqlpage_aide_navigation
SELECT 'datagrid' as component;
SELECT 'Size' as title, "db_size_mb" || ' MB' as description FROM rssd_statistics_overview;
SELECT 'Tables' as title, "total_tables" as description FROM rssd_statistics_overview;
SELECT 'Indexes' as title, "total_indexes" as description FROM rssd_statistics_overview;
SELECT 'Rows' as title, "total_rows" as description FROM rssd_statistics_overview;
SELECT 'Page Size' as title, "page_size" as description FROM rssd_statistics_overview;
SELECT 'Total Pages' as title, "total_pages" as description FROM rssd_statistics_overview;
select 'text' as component, 'Tables' as title;
SELECT 'table' AS component, TRUE as sort, TRUE as search;
SELECT * FROM rssd_table_statistic ORDER BY table_size_mb DESC;