バージョンごとのドキュメント一覧

37.44. routine_table_usage #

The view <literal>routine_table_usage</literal> is meant to identify all tables that are used by a function or procedure. This information is currently not tracked by <productname>PostgreSQL</productname>. routine_table_usageビューは、関数またはプロシージャで使用される全てのテーブルを識別することを目的としています。 現在PostgreSQLでは、この情報は追跡されません。

表37.42 routine_table_usage Columns

Column Type 列 型

Description 説明

specific_catalog sql_identifier

Name of the database containing the function (always the current database) 関数が含まれるデータベースの名前です(常に現在のデータベースです)。

specific_schema sql_identifier

Name of the schema containing the function 関数が含まれるスキーマの名前です。

specific_name sql_identifier

The <quote>specific name</quote> of the function. See <xref linkend="infoschema-routines"/> for more information. 関数の仕様名称です。 詳細は37.45を参照してください。

routine_catalog sql_identifier

Name of the database containing the function (always the current database) 関数が含まれるデータベースの名前です(常に現在のデータベースです)。

routine_schema sql_identifier

Name of the schema containing the function 関数が含まれるスキーマの名前です。

routine_name sql_identifier

Name of the function (might be duplicated in case of overloading) 関数の名前です(オーバーロードされている場合は重複する可能性があります)。

table_catalog sql_identifier

Name of the database that contains the table that is used by the function (always the current database) 関数で使用されるテーブルを含むデータベースの名前です(常に現在のデータベースです)。

table_schema sql_identifier

Name of the schema that contains the table that is used by the function 関数で使用されるテーブルを含むスキーマの名前です。

table_name sql_identifier

Name of the table that is used by the function 関数で使用されるテーブルの名前です。