pg_cancel_backend(pid int>)
- int
+ boolean
Cancel a backend's current query
|
pg_reload_conf()
- int
+ boolean
Cause server processes to reload their configuration files
|
pg_rotate_logfile()
- int
+ boolean
Rotate server's logfile
- Each of these functions returns 1 if successful, 0 if not successful.
+ Each of these functions returns true if
+ successful and false otherwise.
-
pg_complete_relation_size
pg_tablespace_size(oid)
bigint
- Total disk space used by the tablespace with the specified OID
+ Disk space used by the tablespace with the specified OID
|
pg_tablespace_size(name)
bigint
- Total disk space used by the tablespace with the specified name
+ Disk space used by the tablespace with the specified name
|
pg_database_size(oid)
bigint
- Total disk space used by the database with the specified OID
+ Disk space used by the database with the specified OID
|
pg_database_size(name)
bigint
- Total disk space used by the database with the specified name
+ Disk space used by the database with the specified name
|
pg_relation_size(text)
bigint
- Disk space used by the table or index with the specified name.
- The name may be qualified with a schema name
+
+ Disk space used by the table or index with the specified name.
+ The table name may be qualified with a schema name
+
|
- pg_complete_relation_size(oid)
+ pg_total_relation_size(oid)
bigint
- Total disk space used by the table with the specified OID,
- including indexes and toasted data
+
+ Total disk space used by the table with the specified OID,
+ including indexes and toasted data
+
|
- pg_complete_relation_size(text)
+ pg_total_relation_size(text)
bigint
- Total disk space used by the table with the specified name,
- including indexes and toasted data.
- The table name may be qualified with a schema name
+
+ Total disk space used by the table with the specified name,
+ including indexes and toasted data. The table name may be
+ qualified with a schema name
+
|
- pg_complete_relation_size> accepts the OID or name of a table
- or toast table, and returns the size in bytes of the data and all
- associated indexes and toast tables.
+ pg_total_relation_size> accepts the OID or name of a
+ table or toast table, and returns the size in bytes of the data
+ and all associated indexes and toast tables.
- pg_ls_dir()> returns all the names in the specified
+ pg_ls_dir> returns all the names in the specified
directory, except the special entries .>> and
..>>.
- pg_read_file()> returns part of a text file, starting
+ pg_read_file> returns part of a text file, starting
at the given
offset>, returning at most length>
bytes (less if the end of file is reached first). If
offset>
is negative, it is relative to the end of the file.
- pg_stat_file()> returns a record containing the file
+ pg_stat_file> returns a record containing the file
size, last accessed timestamp, last modified timestamp,
last file status change timestamp (Unix platforms only),
file creation timestamp (Win32 only), and a boolean indicating