Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

final class atoti.ExternalTables

Tables of an external database.

Example

>>> # Individual tables can be accessed with their name only if it is unique:
>>> external_table = external_tables["my_table"]
>>> # Or with a tuple with the schema name to differentiate the tables:
>>> external_table = external_tables["my_schema", "my_table"]
>>> # Or even a tuple starting with the catalog name:
>>> external_table = external_tables["my_catalog", "my_schema", "my_table"]