Changes between Version 14 and Version 15 of UsersWikiPostGIS20Ubuntu1204


Ignore:
Timestamp:
May 5, 2012, 11:13:09 PM (12 years ago)
Author:
jeffmeyer
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiPostGIS20Ubuntu1204

    v14 v15  
    196196As noted above, this is a great resource: https://help.ubuntu.com/community/PostgreSQL.
    197197
     198==== Connecting to your database using pgAdmin III====
    198199
    199200If you connect through pgadmin, use the following attributes:
     
    214215=== PostGIS Extension for PostgreSQL ===
    215216Spatially enabling a database using extensions is a new feature of PostgreSQL 9.1.
    216 
     217As usual, there are two methods for doing this, through psql or pgAdmin III:
     218
     219==== Adding extensions using psql ====
    217220Connect to a database using pgAdmin or psql, and run the following commands. For example, if you have created a database called 'GIStest', to add postgis with raster support capability to 'GIStest' do the following:
    218221{{{
     
    228231GIStest=#
    229232}}}
     233
     234==== Adding extensions using pgAdmin III ====
     235
     236 * Open pgAdmin III
     237 * Click on the database symbol for the database to be spatially enabled
     238 * Right click on the "Extensions" symbol and select "New Extension"
     239 * In name, type "postgis"
     240 * Then, click "OK"
     241 * Repeat, using "postgis_topology"
     242
    230243
    231244=== Enabler Scripts / Template ===