extract_table_from_file_name
Syntax
sys.extract_table_from_file_name(path)
Description
extract_table_from_file_name
is a stored function available with the Sys Schema.
Given a file path, it returns the table name.
The function does not examine anything on disk. The return value, a VARCHAR(64), is determined solely from the provided path.
Examples
SELECT sys.extract_table_from_file_name('/usr/local/mysql/data/db/t1.ibd'); +---------------------------------------------------------------------+ | sys.extract_table_from_file_name('/usr/local/mysql/data/db/t1.ibd') | +---------------------------------------------------------------------+ | t1 | +---------------------------------------------------------------------+
See also
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.