forked from orafce/orafce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL.orafce
27 lines (19 loc) · 874 Bytes
/
INSTALL.orafce
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
Installation
============
This module is normally distributed as a PostgreSQL 'contrib' module. To
install it from a pre-configured source tree run the following commands
as a user with appropriate privileges from the orafce source directory:
export NO_PGXS=1
make
make install
Alternatively, if you have no source tree you can install using PGXS. Simply
run the following commands the adminpack source directory:
make
make install
To install Orafce functions in the database, either run the orafce.sql script
using the pgAdmin SQL tool (and then close and reopen the connection to the
freshly instrumented server), or run the script using psql, eg:
CREATE EXTENSION orafce;
Other administration tools that use this module may have different requirements,
please consult the tool's documentation for further details.
This package requires PostgreSQL 9.5 or later.