zoukankan      html  css  js  c++  java
  • 【Postgres】空间数据库创建

    1、数据库创建问题-Navicat-ERROR: source database "template1" is being accessed by other users

    2、解决方案

    关闭Navicat

     3、扩展PG的空间数据库功能

    -- Enable PostGIS (includes raster) 
    CREATE EXTENSION postgis; 
    -- Enable Topology 
    CREATE EXTENSION postgis_topology; 
    -- Enable PostGIS Advanced 3D 
    -- and other geoprocessing algorithms 
    -- sfcgal not available with all distributions 
    CREATE EXTENSION postgis_sfcgal; 
    -- fuzzy matching needed for Tiger 
    CREATE EXTENSION fuzzystrmatch; 
    -- rule based standardizer 
    CREATE EXTENSION address_standardizer; 
    -- example rule data set 
    CREATE EXTENSION address_standardizer_data_us; 
    -- Enable US Tiger Geocoder 
    CREATE EXTENSION postgis_tiger_geocoder;

  • 相关阅读:
    跨站请求伪造CSRF
    XSS危害——session劫持
    跨站脚本攻击XSS
    初识jsonp
    php json与xml序列化/反序列化
    php操作xml
    HTML5 WebStorage
    串口调试助手
    dashboard
    windows定时器编程
  • 原文地址:https://www.cnblogs.com/defineconst/p/10648537.html
Copyright © 2011-2022 走看看