]> begriffs open source - ai-pg/blob - full-docs/txt/infoschema-routine-table-usage.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / infoschema-routine-table-usage.txt
1
2 35.44. routine_table_usage #
3
4    The view routine_table_usage is meant to identify all tables that are
5    used by a function or procedure. This information is currently not
6    tracked by PostgreSQL.
7
8    Table 35.42. routine_table_usage Columns
9
10    Column Type
11
12    Description
13
14    specific_catalog sql_identifier
15
16    Name of the database containing the function (always the current
17    database)
18
19    specific_schema sql_identifier
20
21    Name of the schema containing the function
22
23    specific_name sql_identifier
24
25    The “specific name” of the function. See Section 35.45 for more
26    information.
27
28    routine_catalog sql_identifier
29
30    Name of the database containing the function (always the current
31    database)
32
33    routine_schema sql_identifier
34
35    Name of the schema containing the function
36
37    routine_name sql_identifier
38
39    Name of the function (might be duplicated in case of overloading)
40
41    table_catalog sql_identifier
42
43    Name of the database that contains the table that is used by the
44    function (always the current database)
45
46    table_schema sql_identifier
47
48    Name of the schema that contains the table that is used by the function
49
50    table_name sql_identifier
51
52    Name of the table that is used by the function