-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathadminpack.sgml
40 lines (31 loc) · 1.17 KB
/
adminpack.sgml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!-- $PostgreSQL$ -->
<sect1 id="adminpack">
<title>adminpack</title>
<indexterm zone="adminpack">
<primary>adminpack</primary>
</indexterm>
<para>
<filename>adminpack</> fornece um número de funções que o
<application>pgAdmin</> e outras ferramentas de administração e
gerenciamento podem utilizar para fornecer funcionalidades adicionais, tais
como gerenciamento remoto de arquivos de log do servidor.
</para>
<sect2>
<title>Funções implementadas</title>
<para>
As funções implementadas pelo <filename>adminpack</> só podem ser
executadas por um superusuário. Aqui está uma lista dessas funções:
<programlisting>
int8 pg_catalog.pg_file_write(fname text, data text, append bool)
bool pg_catalog.pg_file_rename(oldname text, newname text, archivename text)
bool pg_catalog.pg_file_rename(oldname text, newname text)
bool pg_catalog.pg_file_unlink(fname text)
setof record pg_catalog.pg_logdir_ls()
/* Renaming of existing backend functions for pgAdmin compatibility */
int8 pg_catalog.pg_file_read(fname text, data text, append bool)
bigint pg_catalog.pg_file_length(text)
int4 pg_catalog.pg_logfile_rotate()
</programlisting>
</para>
</sect2>
</sect1>