Changes between Version 14 and Version 15 of UsersWikiPostGIS20Ubuntu1204
- Timestamp:
- 05/05/12 23:13:09 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersWikiPostGIS20Ubuntu1204
v14 v15 196 196 As noted above, this is a great resource: https://help.ubuntu.com/community/PostgreSQL. 197 197 198 ==== Connecting to your database using pgAdmin III==== 198 199 199 200 If you connect through pgadmin, use the following attributes: … … 214 215 === PostGIS Extension for PostgreSQL === 215 216 Spatially enabling a database using extensions is a new feature of PostgreSQL 9.1. 216 217 As usual, there are two methods for doing this, through psql or pgAdmin III: 218 219 ==== Adding extensions using psql ==== 217 220 Connect 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: 218 221 {{{ … … 228 231 GIStest=# 229 232 }}} 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 230 243 231 244 === Enabler Scripts / Template ===