Changes between Version 9 and Version 10 of InstallationGuidelines/PostgreSQL
- Timestamp:
- 09/18/10 13:29:26 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/PostgreSQL
v9 v10 52 52 53 53 == Maintenance == 54 Connect to Database (or use pgAdmin III GUI's PSQL Console on plugins menu): 55 {{{ 56 su postgres 57 psql 58 }}} 59 or 60 {{{ 61 psql -d my_spatial_db -U username 62 }}} 63 64 List Databases: 65 {{{ 66 \l 67 }}} 68 69 List Tables: 70 {{{ 71 \d 72 }}} 73 74 List Table structure: 75 {{{ 76 \d tablename 77 select field/* from tablename where field = 'value'; 78 }}} 79 54 80 If you need to build a fresh database: 55 81 {{{