{% extends "base.html" %} {% block title %}TAPDB Admin - Info{% endblock %} {% block content %}
{{ runtime_info[section] | tojson(indent=2) }}
{% endfor %}
Could not load database inventory: {{ db_inventory_error }}
{% else %}
Physical database:
{{ db_inventory_physical_db_name or db_inventory_db_name or "unknown" }}
Active configured schema:
{{ db_inventory_active_schema_name or "unknown" }}
Search path:
{% if db_inventory_search_path %}
{% for schema_name in db_inventory_search_path %}
{{ schema_name }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% else %}
none
{% endif %}
Non-system schemas:
{% if db_inventory_schema_names %}
{% for schema_name in db_inventory_schema_names %}
{{ schema_name }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% else %}
none
{% endif %}
| Object Class | Count |
|---|---|
| schemas | {{ db_inventory_counts.schemas }} |
| tables | {{ db_inventory_counts.tables }} |
| views | {{ db_inventory_counts.views }} |
| materialized views | {{ db_inventory_counts.materialized_views }} |
| sequences | {{ db_inventory_counts.sequences }} |
| triggers | {{ db_inventory_counts.triggers }} |
| functions | {{ db_inventory_counts.functions }} |
| indexes | {{ db_inventory_counts.indexes }} |
| Schema | Table |
|---|---|
{{ row.schema_name }} |
{{ row.table_name }} |
No tables found.
{% endif %}| Schema | View |
|---|---|
{{ row.schema_name }} |
{{ row.view_name }} |
No views found.
{% endif %}| Schema | Materialized View |
|---|---|
{{ row.schema_name }} |
{{ row.materialized_view_name }} |
No materialized views found.
{% endif %}| Schema | Sequence |
|---|---|
{{ row.schema_name }} |
{{ row.sequence_name }} |
No sequences found.
{% endif %}| Schema | Table | Trigger |
|---|---|---|
{{ row.schema_name }} |
{{ row.table_name }} |
{{ row.trigger_name }} |
No triggers found.
{% endif %}| Schema | Function |
|---|---|
{{ row.schema_name }} |
{{ row.function_signature }} |
No functions found.
{% endif %}| Schema | Table | Index |
|---|---|---|
{{ row.schema_name }} |
{{ row.table_name }} |
{{ row.index_name }} |
No indexes found.
{% endif %}