~ubuntu-branches/ubuntu/trusty/orafce/trusty-proposed

« back to all changes in this revision

Viewing changes to INSTALL.orafunc

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2007-10-17 18:50:39 UTC
  • Revision ID: james.westby@ubuntu.com-20071017185039-0jn7u57revfenvym
Tags: upstream-2.1.2
ImportĀ upstreamĀ versionĀ 2.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Installation
 
2
============
 
3
 
 
4
This module is normally distributed as a PostgreSQL 'contrib' module. To
 
5
install it from a pre-configured source tree run the following commands
 
6
as a user with appropriate privileges from the orafce source directory:
 
7
 
 
8
make
 
9
make install
 
10
 
 
11
Alternatively, if you have a PostgreSQL 8.2 or higher installation but no 
 
12
source tree you can install using PGXS. Simply run the following commands the
 
13
adminpack source directory:
 
14
 
 
15
make USE_PGXS=1 
 
16
make USE_PGXS=1 install 
 
17
 
 
18
To install Orafce functions in the database, either run the orafce.sql script 
 
19
using the pgAdmin SQL tool (and then close and reopen the connection to the 
 
20
freshly instrumented server), or run the script using psql, eg:
 
21
 
 
22
psql -U postgres postgres < orafunc.sql
 
23
 
 
24
Other administration tools that use this module may have different requirements,
 
25
please consult the tool's documentation for further details.
 
26