sql >> データベース >  >> RDS >> PostgreSQL

CreateExtensionpostgisを実行しようとしたときにエラーが発生しました

    更新:チームは問題を解決するpostgis.2.1.0-3 RPMパッケージをリリースしました:拡張機能が利用可能になりました:

    /usr/pgsql-9.3/share/extension/postgis.control
    

    更新を終了します。[...]

    ソースからPOSTGISをコンパイルすることを解決しました。これはCentOS6.464ビットのステップバイステップです:

    wget http://download.osgeo.org/postgis/source/postgis-2.1.0.tar.gz
    tar xvf postgis-2.1.0.tar.gz
    cd postgis-2.1.0
    ./configure --with-pgconfig=/usr/pgsql-9.3/bin/pg_config --without-raster
    make
    make comments
    make install
    make install-comments
    su - postgres 
    cd /usr/pgsql-9.3/share/contrib/postgis-2.1/
    psql -d postgres -f postgis.sql
    psql -d postgres -f spatial_ref_sys.sql
    psql -d postgres -f postgis_comments.sql
    psql -d postgres -f topology.sql
    psql -d postgres -f topology_comments.sql
    


    1. 同義語を使用したPostgres全文検索

    2. SQLiteのLIKE演算子で大文字と小文字を区別する方法

    3. innondbエンジンを使用したmysqlデータベースへのPythonスクリプトからの挿入の問題

    4. 複数の列の間にセットのような一意性を適用するにはどうすればよいですか?