oceanbase.DBA_OB_EXTERNAL_TABLE_FILES

2026-04-02 06:23:58  Updated

Note

This view is available starting with V4.2.0.

Purpose

This view displays the list of files corresponding to all created external tables in the current tenant.

Columns

Column Type Nullable Description
TABLE_NAME varchar(256) NO The name of the external table.
TABLE_SCHEMA varchar(128) NO The name of the database where the external table is located.
PARTITION_NAME varchar(2) NO The partition name of the external table.
FILE_URL varbinary(16384) NO The URL of the external table file.
FILE_SIZE bigint(20) NO The size of the file.

Sample query

Query the list of files corresponding to all created external tables in the current tenant.

obclient [oceanbase]> SELECT * FROM oceanbase.DBA_OB_EXTERNAL_TABLE_FILES;

The query result is as follows:

+------------+--------------+----------------+------------------------------+-----------+
| TABLE_NAME | TABLE_SCHEMA | PARTITION_NAME | FILE_URL                     | FILE_SIZE |
+------------+--------------+----------------+------------------------------+-----------+
| ext_t3     | test         | P0             | xx.xx.xx.208:2882%data.csv   |        34 |
| ext_t2     | test         | P0             | xx.xx.xx.208:2882%data.csv   |        34 |
| ext_t1     | test         | P0             | xx.xx.xx.208:2882%data.csv   |        34 |
+------------+--------------+----------------+------------------------------+-----------+
3 rows in set

References

Contact Us