Note: You are currently viewing documentation for Moodle 2.1. Up-to-date documentation for the latest stable version is available here: PostgreSQL.

PostgreSQL: Difference between revisions

From MoodleDocs
Frank Ralf (talk | contribs)
No edit summary
Line 1: Line 1:
PostgreSQL is one of the two databases that is fully supported by Moodle. A database is a required component of any Moodle installation.
PostgreSQL is one of the two databases that is fully supported by Moodle. A database is a required component of any Moodle installation.


PostgreSQL describes itself as "an object-relational database management system (ORDBMS) based on POSTGRES, Version 4.2, developed at the University of California at Berkeley Computer Science Department. POSTGRES pioneered many concepts that only became available in some commercial database systems much later.
== Creating Moodle Database ==


PostgreSQL is an open-source descendant of this original Berkeley code. It supports a large part of the SQL standard and offers many modern features:
* Log into the PostgreSQL command line client. The exact form depends on how your PostgreSQL is configured but will be something like:
<pre>
$ psql -U postgres
Password for user postgres:
</pre>
(enter the password for your 'postgres' user set during installation). After some preamble you should see the prompt ''postgres=#''.
* Create the user for the Moodle database and assign a password:
<pre>
postgres=# create user moodleuser with password 'yourpassword';
</pre>
...substituting a suitably strong password.
* Create the database:
<pre>
Create database moodle owner moodleuser;
</pre>


* complex queries
* foreign keys
* triggers
* views
* transactional integrity
* multiversion concurrency control
Also, PostgreSQL can be extended by the user in many ways, for example by adding new
* data types
* functions
* operators
* aggregate functions
* index methods
* procedural languages
And because of the liberal license, PostgreSQL can be used, modified, and distributed by everyone free of charge for any purpose, be it private, commercial, or academic."


== See also ==
== See also ==

Revision as of 13:22, 1 December 2011

PostgreSQL is one of the two databases that is fully supported by Moodle. A database is a required component of any Moodle installation.

Creating Moodle Database

  • Log into the PostgreSQL command line client. The exact form depends on how your PostgreSQL is configured but will be something like:
$ psql -U postgres
Password for user postgres:

(enter the password for your 'postgres' user set during installation). After some preamble you should see the prompt postgres=#.

  • Create the user for the Moodle database and assign a password:
postgres=# create user moodleuser with password 'yourpassword';

...substituting a suitably strong password.

  • Create the database:
Create database moodle owner moodleuser;


See also