Oracle SQL Developer and PostgreSQL
From http://stackoverflow.com/questions/7592519/oracle-sql-developer-and-postgresql
Oracle SQL Developer 4.0.1.14 surely does support connections to PostgreSQL.
- download JDBC driver for Postgres (http://jdbc.postgresql.org/download.html)
- in SQL Developer go to
Tools → Preferences,Database → Third Party JDBC Driversand add the jar file (see http://www.oracle.com/technetwork/products/migration/jdbc-migration-1923524.html for step by step example) - now just make a new
Database Connectionand instead ofOracle, selectPostgreSQLtab
Edit:
If you have different user name and database name, one should specify in hostname:
hostname/database? (do not forget ?) or hostname:port/database?.
(thanks to @kinkajou and @Kloe2378231; more details onhttp://stackoverflow.com/a/28671213/565525).
Comments
Post a Comment