pgutils provides very basic functionality for PostgreSQL so even pglogger is relying on them.
Thanks is due to all the project members and to the folks developing
PostgreSQL and all its community.
Thanks to the providers of SourceForge so we can
publish our works to a broader audience. Hopefully it stays clean from add ware
and other nuisances or worse things.
$Header$
Provide a fairly recent z-shell (5.5.1) or a Windows command line if you do
not want to run full_install.pg_sql by means of psql against your database
(only for installation)
Provide a PostgreSQL database ;-) (the most recent package has been developed
against version 11.4)
template1 with postgres.create database <YOUR_APPLICATION_DATABASE>;.Create your utils user <UTILSUSER> with the create and login privilege onto your application database, e.g
create role <UTILSUSER> with password 'Do change this silly password' createdb login;
Create your utils schema <UTILS> that is owned by <UTILSUSER>.
create schema <UTILS> authorization <UTILSUSER>;
Unpack the pgutils package
Adapt set_parameters.pg_sql, full_install.zsh or full_install.bat to
your setup
Run full_install.zsh or full_install.bat or full_install.pg_sql against
your database
Deltas are not supported. Please whipe the schema of your last installation
clean and install the full package.
$Header$
utils.<function you awant to call>, you$Header$
The documentation of the code is generated by HyperSQL.
For issue tracking the SourceForge Tracker is employed.
As code repository the Subversion installation of SourceForge is used.
pgutils is under the GNU Affero General Public License v3 (AGPLv3) or later.
$Header$