I’m trying to connect my database postgresql/postgis to mapguide maestro but it send me a error message.
Do you have some idea about this, or can you help me about how can I connect it with my database postgis? I’m using postgresql 9.4, mapguide open source 2.6.1 and mapguide maestro 6.0
You are probably connecting to a PostgreSQL database without PostGIS installed.
Either install PostGIS to that database (e.g. CREATE EXTENSION postgis), or modify your connection settings to the correct host/port/dbname with an existing PostGIS installation.
Related
I installed PostGis in the docker, in the standard database there are all the necessary extensions, but when creating a new one there are none, what do I need to do to fix this?
If you already has the libraries installed in the system, just connect to the database geo and execute the create extension:
CREATE EXTENSION postgis
Keep in mind that you have to additionally CREATE EXTENSION in the database you want, unless you create the database based on a template that already has PostGIS installed.
From the PostGIS documentation :
Once postgis is installed, it needs to be enabled in each individual
database you want to use it in.
I have a problem with PostGIS and a connection to QGIS. I successfully connected to a database on a server but when I try to add a PostGIS Table, I am getting warning symbols next to all my tables. I have permission to all the tables and I am using the latest version of QGIS.
Any hints?
#kylie In your database create spatial reference system.
For postgresql----> create extension postgis
I can't create extension in my db. throws a error that says
CREATE EXTENSION postgis;
ERROR: syntax error at or near "PARALLEL"
Position: 2445
Is there any solution for this issue ?
PostgreSQL version 9.6.
PostGis version 2.3.
Thanks !
No one could possibly debug this without knowing a lot more information, but it's either
a (syntax) error in the extension itself
you're not running PostgreSQL 9.6 (maybe you have some earlier version installed alongside it)
Connect to the database that you ran CREATE EXTENSION on, and run this
SELECT version();
My assumption is that you're not on a 9.6 server, and that you're connecting to some earlier version of PostgreSQL. PARALLEL was new with 9.6.
I use MAC OSX (El Capitan) and I would like to connect to my local PostgreSQL database via Oracle SQL Developer.
I've installed Oracle SQL Developer (Version 4.1.3.20, Build 78)
I've configured PostgreSQL driver in SQL Developer (Version postgresql-9.4.1207.jar).
I created a New Connection in SQL Developer.
It connects fine to DB and I can see my tables, the problem is that I cannot see my functions\stored procedures. it empty...
If I connect to the same schema via pgAdmin3 then I can see everything. so it's not a problem with DB.
Has anyone encountered this bizarre problem?
Thank you!
Has anyone managed to use Postgresql as a datasource for SSAS? The Postgresql .NET connector seems promising, but the SSAS view wizard does not seem to be able to see the tables in the database.
Try using the ODBC connector. I've had success getting other tools to connect to PG using it. The EnterpriseDB installers not only include a well packaged, working version of PG for windows, they include working, correctly installed drivers.
http://www.enterprisedb.com/products-services-training/pgdownload
try pg_bulkload for load from via c# & from mssql to pgsql
copy & bcp (ssis) for second direction (pgsql->ssas)
242
It is actually possible to hack the Postgresql .NET connector and implement a "MSSQL compatibility mode", where the [ and ] around tables and schema names are removed. Using this, the list of tables does not appear in MS SSAS, but it is possible to replace them by views.