Advertisement
perchslayer

step_02_validate_ogr2ogr_script_using_psq

Jun 19th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.71 KB | None | 0 0
  1. --Check Data in psql
  2.  
  3. U:\>psql -U postgres
  4. Password for user postgres:
  5.  
  6. postgres=# set search_path to public;
  7. SET
  8.  
  9. postgres=# \d
  10.                  List of relations
  11.    Schema |        Name         |   Type   |  Owner
  12. ----------+---------------------+----------+----------
  13.  public   | ll                  | table    | postgres
  14.  public   | ll_objectid_seq     | sequence | postgres
  15.  public   | ll_rem              | table    | postgres
  16.  public   | ll_rem_objectid_seq | sequence | postgres
  17.  public   | ml                  | table    | postgres
  18.  public   | ml_objectid_seq     | sequence | postgres
  19.  public   | ml_rem              | table    | postgres
  20.  public   | ml_rem_objectid_seq | sequence | postgres
  21. (8 rows)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement