-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminpack.html
More file actions
28 lines (27 loc) · 3.87 KB
/
adminpack.html
File metadata and controls
28 lines (27 loc) · 3.87 KB
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>F.1. adminpack</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.78.1" /><link rel="home" href="index.html" title="PostgreSQL 9.5.0文書" /><link rel="up" href="contrib.html" title="付録F 追加で提供されるモジュール" /><link rel="prev" href="contrib.html" title="付録F 追加で提供されるモジュール" /><link rel="next" href="auth-delay.html" title="F.2. auth_delay" /><link rel="copyright" href="legalnotice.html" title="法的告知" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">F.1. adminpack</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="contrib.html">戻る</a> </td><th width="60%" align="center">付録F 追加で提供されるモジュール</th><td width="20%" align="right"> <a accesskey="n" href="auth-delay.html">次へ</a></td></tr></table><hr /></div><div class="sect1" id="adminpack"><div class="titlepage"><div><div><h2 class="title" style="clear: both">F.1. adminpack</h2></div></div></div><a id="idp141655696" class="indexterm"></a><p><span class="original">
<filename>adminpack</> provides a number of support functions which
<application>pgAdmin</> and other administration and management tools can
use to provide additional functionality, such as remote management
of server log files.
</span><code class="filename">adminpack</code>は、<span class="application">pgAdmin</span>やその他の管理・運用ツールがサーバログファイルの遠隔管理を行うなどの、追加的な機能を提供できるようにするための数多くのサポート機能を提供します。
</p><div class="sect2" id="idp141658960"><div class="titlepage"><div><div><h3 class="title">F.1.1. 実装された機能</h3></div></div></div><span class="original">
<title>Functions Implemented</title>
</span><p><span class="original">
The functions implemented by <filename>adminpack</> can only be run by a
superuser. Here's a list of these functions:
</span><code class="filename">adminpack</code>により実装された機能はスーパーユーザのみが実行可能です。
以下がそれらの機能一覧です。
</p><pre class="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()
<span class="original">
/* Renaming of existing backend functions for pgAdmin compatibility */
</span>
/* pgAdmin互換性用の現在残されているバックエンド機能 */
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()</pre><p>
</p></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="contrib.html">戻る</a> </td><td width="20%" align="center"><a accesskey="u" href="contrib.html">上に戻る</a></td><td width="40%" align="right"> <a accesskey="n" href="auth-delay.html">次へ</a></td></tr><tr><td width="40%" align="left" valign="top">付録F 追加で提供されるモジュール </td><td width="20%" align="center"><a accesskey="h" href="index.html">ホーム</a></td><td width="40%" align="right" valign="top"> F.2. auth_delay</td></tr></table></div></body></html>