Return to site

Postico 1 3 – A Modern Postgresql Client Setting

broken image


  1. Postico 1 3 – A Modern Postgresql Client Setting Permissions
  2. Postico 1 3 – A Modern Postgresql Client Setting Example
  3. Postico 1 3 – A Modern Postgresql Client Settings
  4. Postico 1 3 – A Modern Postgresql Client Setting Tool

DataGrip, DBeaver, and Navicat for PostgreSQL are probably your best bets out of the 17 options considered. 'Much more powerful than its counterparts' is the primary reason people pick DataGrip over the competition. This page is powered by a knowledgeable community that helps you make an informed decision. At work I am using DB Visualizer.This is a database manipulation tool that supports a large number of database systems, including PostgreSQL.It is written in Java, which means it is cross-platform compatible.I have experience with the free Linux version of it, but the website states it supports the 3 major OS-es. Here is how it fits your requirements. 1 Configure the service. 1.1 For PostgreSQL 9.2 and above on a domain: set service principal name for computer account; 1.2 For all PostgreSQL versions on a domain: 'postgres' as a domain account; 2 Add SSPI entries in pghba.conf. The PostgreSQL Client package works on the client side to connect to servers, while the PostgreSQL Server package allows your system to set up and host your own databases. Oder mit apturl installieren, Link: apt://postgresql-client. Your home directory, so that you can use the postgresql-common tools without root privileges.

Postgres.app is a full-featured PostgreSQL installation packaged as a standard Mac app.It includes everything you need to get started:we've even included popular extensions like PostGIS for geo data and plv8 for JavaScript.

Postgres.app has a beautiful user interface and a convenient menu bar item.You never need to touch the command line to use it – but of course we do include all the necessary command line tools and header files for advanced users.

Postgres.app can install minor updates automatically, so you get bugfixes as soon as possible.

Installing Postgres.app

  • Download ➜ Move to Applications folder ➜ Double Click

    If you don't move Postgres.app to the Applications folder, you will see a warning about an unidentified developer and won't be able to open it.

  • Click 'Initialize' to create a new server

  • Configure your $PATH to use the included command line tools (optional):

Done! You now have a PostgreSQL server running on your Mac with these default settings:

Hostlocalhost
Port5432
Useryour system user name
Databasesame as user
Passwordnone
Connection URLpostgresql://localhost

To connect with psql, double click a database. To connect directly from the command line, type psql. If you'd rather use a graphical client, see below.

NOTE: These instructions assume that you've never installed PostgreSQL on your Mac before.If you have previously installed PostgreSQL using homebrew, MacPorts, the EnterpriseDB installer, consider removing other PostgreSQL installations first.We also have instructions for upgrading from older versions of Postgres.app.

Graphical Clients

Postgres.app includes psql, a versatile command line client for PostgreSQL.But it's not the only option; there are plenty of great graphical clients available for PostgreSQL.Two popular tools are:

pgAdmin 4 is a feature rich open source PostgreSQL client.It has support for almost every feature in PostgreSQL.The only downside is that the cross-plattform UI really doesn't live up to the expectations of a native Mac app.

Postico on the other hand, is a very modern Mac app.It's made by the same people that maintain Postgres.app, and we think you'll like it! We put a lot of effort into making it a joy to use.However, it doesn't have the extensive feature set of pgAdmin, and it's a commercial app rather than open source.

Aside from those two options, there are a lot more to choose from! Check the documentation for a list of amazing Mac apps for PostgreSQL.

How to connect

After your PostgreSQL server is up and running, you'll probably want to connect to it from your application.Here's how to connect to PostgreSQL from popular programming languages and frameworks:

PHP

To connect from PHP, make sure that it supports PostgreSQL. The version included with macOS doesn't support PostgreSQL. We recommend MAMP for an easy way to install a current version of PHP that works.

You can use PDO (object oriented):

Or the pg_connect() functions (procedural):

Python

To connect to a PostgreSQL server with Python, please first install the psycopg2 library:

Django

In your settings.py, add an entry to your DATABASES setting:

Flask

When using the Flask-SQLAlchemy extension you can add to your application code:

SQLAlchemy

Ruby

To install the pg gem, make sure you have set up your $PATH correctly (see Command-Line Tools), then execute the following command:

Rails

In config/database.yml, use the following settings:

Sinatra

In config.ru or your application code:

ActiveRecord

Install the activerecord gem and require 'active_record', and establish a database connection:

DataMapper

Install and require the datamapper and do_postgres gems, and create a database connection:

Sequel

Install and require the sequel gem, and create a database connection:

Java
  1. Download and install the PostgreSQL JDBC driver
  2. Connect to the JDBC URL jdbc:postgresql://localhost

For more information see the official PostgreSQL JDBC documentation.

C

libpq is the native C client library for connecting to PostgreSQL. It's really easy to use:

Now compile the file with clang and run it:

Swift

You can just use the C API in Swift! First include libpq in your bridging header:

Then make sure to link with libpq.

On iOS, you'll need to build libpq yourself.

On macOS you can use the system provided libpq (does not support SSL) or use libpq provided by Postgres.app by adding the following build settings:

Other Linker Flags-lpq
Header Search Paths/Applications/Postgres.app/Contents/Versions/latest/include
Library Search Paths/Applications/Postgres.app/Contents/Versions/latest/lib

Now you can use the libpq C library to connect to PostgreSQL:

Support

We have a list of common problems in the troubleshooting section in the documentation.

For general questions concerning PostgreSQL, have a look at the official PostgreSQL documentation.

Viscosity 1 8 4 gallon. If you have a question concerning Postgres.app that is not answered by the Postgres.app documentation,you can ask @PostgresApp on Twitter, or open an issue on GitHub.

When reporting bugs, let us know which version of Postgres.app & macOS you are using, and be sure to include detailed error messages, even if your issue seems similar to another one.

License

Postgres.app, PostgreSQL, and its extensions are released under the PostgreSQL License. The released binaries also include OpenSSL (OpenSSL License), PostGIS (GPLv2), and plv8 (3 clause BSD).

Postgres.app is maintained by Jakob Egger. It was originally created by Mattt Thompson.


This page is a list of miscellaneous utilities that work with Postgres (ex: data loaders, comparators etc.). Things that don't do queries' 'enter SQL and get it back out again.'

If you'd like to find clients that allows you to 'enter SQL and get it back out again' see PostgreSQL Clients.

If you'd like to find DB visualization or design tools see Design Tools.

  • 1Open Source / Free Software
  • 2Proprietary

Open Source / Free Software

This is the list of 'open source and free' miscellaneous utilities:

Libre Office

Supports MySQL/MariaDB, Adabas D, MS Access and PostgreSQL, as well as other JDBC/ODBC databases.

PASH-Viewer: PostgreSQL Active Session History Viewer

Java (multi-platform).

Open-source software which provides graphical view of active session history and help you to answer questions like 'What wait events were taking most time?', 'Which sessions were taking most time?', 'Which queries were taking most time and what were they doing?'. It also supports Active Session History extension by pgsentinel. Does not do DB inserts, modifications, etc.

pgrights: GUI for PostgreSQL roles, privileges and policies

MacOS (based on Electron, so versions for other OS can be build from source code).

Open-source software which allows you to easily understand what can do (and what can't) a PostgreSQL user with a table's data. In other words, it's a viewer of results of GRANT commands and row-level security rules applied for a particular table and for a particular role. Only modifies user rights, no other capability.

Sohag Developer

Gnu/Linux Windows (Other OS can compile from source code).

Build a powerful database applications following few steps using Sohag Developer .Sohag Developer currently supports PostgreSQL database and has a set of CRUD generators that generates (Qt/C++ code and ui forms - PHP web applications uses web forms and bootstrap framework ) to manipulate the data in the database tables or views.

Beekeeper Studio

Beekeeper Studio is a modern cross-platform SQL editor and database manager available for Linux, Mac, and Windows. Some of its features include:

  • Clean, smooth, usable UI with dark and light themes
  • Tabbed Interface
  • Multiple connections at the same time
  • Saved queries and run history
  • Auto-complete

Proprietary

This is a list of 'closed source' projects, some might have some manner of free version.

Access

Windows

Yes, you can use MS Access as a PostgreSQL database interface. Supports data access to PostgreSQL tables and views; many ODBC-based limitations and errors.

dbForge Studio for PostgreSQL

Microsoft Windows 2000/XP/2003/Vista and Windows 7, 8, 10

dbForge Studio for PostgreSQL by Devart is a GUI tool for database development and management. The IDE for PostgreSQL allows users to create, develop, and execute queries, edit and adjust the code to their requirements in a convenient and user-friendly interface. The tool also provides functionality for PostgreSQL data reporting, data editing, data import and export, building pivot tables and master-detail relations.

Postico

Key features:

  • SQL Development - creating and editing queries, SQL Code Formatter;
  • Query Profiler - locating bottlenecks & tuning performance of slow SQL queries;
  • Data Editor - table settings management;
  • Database Explorer - object tree navigation;
  • Data Export and Data Import - 10+ widely used data formats;
  • Pivot Table - grouping and summarizing data;
  • Master-Detail Browser - data analysis and location of specific records & logical errors;
  • Data Reports - build visual PostgreSQL data reports in 9 different formats.

dbForge Data Compare for PostgreSQL

Microsoft Windows 2000/XP/2003/Vista and Windows 7, 8, 10

dbForge Data Compare for PostgreSQL by Devart is a tool for table data comparison and synchronization. When using PostgreSQL data compare tool developer can detect data differences in compared PostgreSQL tables; generate data synchronization script and execute it to eliminate all these differences.

Key features:

  • Identify the differences between two databases
  • Compare separate tables or table groups by table name mask
  • Compare tables with different structure
  • Generate a report embodying data diff and save it for further analysis
  • Sync data in tables and views in full or in part
  • Generate SQL script for database synchronization
  • Organize database synchronization according to the schedule

dbForge Schema Compare for PostgreSQL

Microsoft Windows 2000/XP/2003/Vista and Windows 7, 8, 10

dbForge Schema Compare for Amazon Redshift and PostgreSQL is a tool for easy and effective comparison and deployment of Redshift database structure differences. The tool gives a comprehensive view of all differences in Amazon Redshift database schemas and generates clear and accurate SQL synchronization scripts to update the database schemas.

Key features:

  • Diff and sync Redshift databases quickly and efficiently
  • Generate SQL scripts to update one database with the contents of another
  • Apply updates from development databases to staging or production
  • Compare the structure of Amazon Redshift databases and fix the errors
  • Migrate PostgreSQL schemas to Amazon Redshift
  • Automate routine synchronization tasks with command-line interface

TablePlus

macOS, Windows, iOS

TablePlus is a modern, native tool with elegant UI that allows you to simultaneously manage multiple databases such as MySQL, PostgreSQL, SQLite, Microsoft SQL Server and more.

  • True native built.
  • Workspace supports multiple tabs, multiple windows
  • Powerful SQL editor with full features: auto syntax highlight, auto-suggestion, split pane, favorite and history.
  • Data Filter & Sorting, import & export
  • Full-dark theme & modern shortcut
  • With plugin system, you can be able to write your own new features to work with database per your needs (export charts, pretty json…).

WaveMaker Ajax GUI Design Tool

Windows, Macintosh, Linux

WaveMaker is an Ajax-based GUI design tool for Postgres. WaveMaker is built using itself! WaveMaker generates a standard Java WAR file based on Spring, Hibernate and Dojo. WaveMaker supports Postgres schema creation and import and includes a visual query editor.

Postgres Compare

frameless

Windows, Mac & Linux

A comprehensive tool for identifying the differences between databases and generating an update script to synchronize them. Postgres Compare reads the system catalogs to determine the structure of the database and compares it to another to find the changes. Generate SQL and deploy the alterations, save snapshots for later. Automate the process via the command line.

Full Convert

Database conversion and synchronization between PostgreSQL and Microsoft Access, dBase, FoxPro, Microsoft Excel, Firebird, Interbase, MySQL, Oracle, Paradox, Microsoft SQL Server, SQL Server, SQL Server Azure, SQL Server Compact(SQLCE), SQLite, Delimited text files (CSV), XML and many more via ODBC.

Abris Platform

Web Application for Linux/Windows, requires Apache+PHP or Docker

Abris Platform is an application development platform for creating Web-based front-ends for PostgreSQL databases. Can be used to quickly create applications with convenient forms via SQL declarative description.

Key features:

  • Quick setup - Abris Platform provides built-in means for flexible data structures configuration (tables, fields and relations). This can be done during system initialization as well as during system expluatation.
  • Single page application - Related entities and tables are instantly accessible for view and edit on the same screen.
  • Search - Use general in-table search and complex column filters.
  • Charts - Data can be represented via charts of different types: bar charts, pie charts, lines any many others.
  • Maps - Build-in support for geo data. Abris platform allow to vizualize geo-data event in real-time using OpenStreet Map package.
  • Reporting - Filter settings can be saved as a report description and data can be exported in the following formats: HTML, PDF, Excel.
  • Data import - Insert data in the current open list view from the computer clipboard.
  • Notifications - Notification pool, that can be filled in PostgreSQL functions.
  • Administrative tool - Built in administrative tools take care of user management, activity monitoring and auditing and allow to configure user/group access policy on the table and field database level.

Replicator Pro

Replicator allows table data comparison and sync - even with heterogeneous databases. It is unique in the fact it can replicate changes only even if source is non-relational (CSV, DBF, Excel documents, Paradox..). Replicator has a built-in scheduler for easy periodic change replication.

DBTools Manager

Windows

Admin

Freeware, available for PostgreSQL and MySQL, allows managing all aspects of the database: db, table, triggers, functions, etc. Includes import/export wizards to migrate data and structure to/from other database engines. Developed by DBTools Software.

PostgreSQL PHP Generator

Windows

PostgreSQL PHP Generator is a freeware but powerful PostgreSQL GUI frontend that allows you to generate high-quality PHP scripts for the selected tables, views and queries for the further working with these objects through the web.

ConvertDB for PosttgreSQL

http://convertdb.com/postgresql has PostgreSQL export/ import tools

Windows

The software is able to connect to remote PostgreSQL 9.x/7.4 located on Linux, Solaris, Mac OS X, and Windows.

ConvertDB cross-database migration tools assist in data conversion and synchronization among PostgreSQL, MySQL, MS SQL Server, MS Windows SQL Azure, and MS Access databases

  • 1 Million of records can be transferred in 5-10 minutes.
  • Bi-directional synchronization between PostgreSQL, MS SQL, MySQL and Oracle
  • Scheduling migration and synchronization jobs.

dotConnect for PostgreSQL

Windows

dotConnect for PostgreSQL, formerly known as PostgreSQLDirect .NET, is an enhanced ORM enabled data provider for PostgreSQL that builds on ADO.NET technology to present a complete solution for developing PostgreSQL-based database applications. It introduces new approaches for designing application architecture, boosts productivity, and leverages database applications.

Key features:

Postico 1 3 – A Modern Postgresql Client Setting Permissions

  • Direct Mode
  • Database Application Development Extension
  • PostgreSQL Advanced Features Support
  • Optimized Code
  • ORM Support
  • BIS Support

Devart PostgreSQL Data Access Components

Windows

PostgreSQL Data Access Components (PgDAC) is a library of components that provides native connectivity to PostgreSQL from Delphi, C++Builder, Lazarus (and Free Pascal) on Windows, Mac OS X, iOS, Android, Linux, and FreeBSD for both 32-bit and 64-bit platforms. PgDAC is designed to help programmers develop really lightweight, faster and cleaner PostgreSQL database applications without deploying any additional libraries.

Native Connectivity to PostgreSQLPgDAC is a complete replacement for standard PostgreSQL connectivity solutions and presents an efficient alternative to the Borland Database Engine (BDE) and standard dbExpress driver for access to PostgreSQL. It provides direct access to PostgreSQL without PostgreSQL Client.

Devart ODBC Driver for PostgreSQL

Windows

Devart ODBC Driver for PostgreSQL provides high-performance and feature-rich connectivity solution for ODBC-based applications to access PostgreSQL databases from Windows, both 32-bit and 64-bit. Full support for standard ODBC API functions and data types implemented in our driver makes the interaction of your database applications with PostgreSQL fast, easy and extremely handy.

Devart Excel Add-in for PostgreSQL

Windows

Devart Excel Add-in for PostgreSQL allows you to quickly and easily connect Microsoft Excel to PostgreSQL, load data from PostgreSQL to Excel, instantly refresh data in an Excel workbook from the database, edit these data, and save them back to PostgreSQL. It enables you to work with PostgreSQL data like with usual Excel worksheets, easily perform data cleansing and de-duplication, and apply all the Excel's powerful data processing and analysis capabilities to these data.

EMS Database Management Tools for PostgreSQL

Windows

PostgreSQL Tools Products Family:

  • EMS SQL Manager for PostgreSQL see PostgreSQL Clients.
  • SQL Management Studio for PostgreSQL - a single workbench for administering PostgreSQL databases, managing database schema and objects as well as for database design, migration, extraction, query building, data import, export, and database comparison.
  • SQL Manager for PostgreSQL - high performance graphical tool for PostgreSQL database administration and development. It makes creating and editing PostgreSQL database objects easy and fast, and allows you to run SQL scripts, visually design databases, build SQL queries, extract, print and search metadata, import and export PostgreSQL database data and much more.
  • Data Export for PostgreSQL - tool to export PostgreSQL database data quickly to any of 19 available formats, including MS Access, MS Excel, MS Word, RTF, HTML, TXT, ODF and more. Data Export for PostgreSQL has a kata kata lucu friendly wizard, which allows you to set various options of PostgreSQL export process visually and a command-line utility to automate your PostgreSQL export jobs using the configuration file.
  • Data Import for PostgreSQL - tool to import data to PostgreSQL tables from MS Excel 97-2007, MS Access, DBF, TXT, CSV, MS Word 2007, RTF, ODF and HTML files. This utility allows you to quickly import data to one or several PostgreSQL tables or views at once, save all PostgreSQL import parameters set on current wizard session, use special batch insert mode to import PostgreSQL data at the maximum possible speed and much more.
  • Data Pump for PostgreSQL - migration tool for converting databases and importing table data from an ADO-compatible source (e.g. MS Access, MS SQL database or any other database with ADO support) to PostgreSQL databases.
  • Data Generator for PostgreSQL - tool for generating test data to PostgreSQL database tables. The utility can help you to simulate the database production environment and allows you to populate several PostgreSQL database tables with test data simultaneously, define tables for generating data, set value ranges, control a wide variety of generation parameters for each field type and much more.
  • DB Comparer for PostgreSQL - a tool for comparing PostgreSQL database schemas and discovering differences in their structures. You can view all the differences in compared database objects and execute an automatically generated script to synchronize structure of PostgreSQL databases and eliminate these differences.
  • DB Extract for PostgreSQL - easy-to-use tool for creating PostgreSQL database backups in a form of SQL scripts. This database script utility allows you to save metadata of all PostgreSQL database objects as well as PostgreSQL table data as database snapshots.
  • SQL Query for PostgreSQL - a useful tool that lets you quickly and simply build SQL queries to PostgreSQL databases. Visual PostgreSQL query building, as well as direct editing of a query text, is available.
  • Data Comparer for PostgreSQL - tool for PostgreSQL data comparison and synchronization. Using this utility you can view all the differences in compared PostgreSQL tables and execute an automatically generated script to eliminate these differences.

SQL Maestro Group products for PostgreSQL

Windows

SQL Maestro Group offers a number of tools for PostgreSQL.

  • Maestro for PostgreSQL see PostgreSQL Clients.
  • PostgreSQL Data Wizard provides you with a number of easy-to-use wizards to transfer any database to PostgreSQL, export data from PostgreSQL tables, views and queries to most popular formats, and import data from various sources into PostgreSQL tables.
  • PostgreSQL Code Factory is a GUI tool aimed at the SQL queries and scripts development.
  • PostgreSQL Data Sync is a powerful and easy-to-use tool for database contents comparison and synchronization.
  • PostgreSQL PHP Generator Professional is a frontend that allows you to generate high-quality PHP applications for your database in a few mouse clicks.

SQL Maestro Group also produces similar tools for MySQL, Oracle, MS SQL Server, SQLite, Firebird, DB2, SQL Anywhere, and MaxDB.

Datanamic DataDiff for PostgreSQL

Windows

Datanamic DataDiff for PostgreSQL is a utility for data comparison and synchronization. Compare data for selected tables in two databases, view differences and publish changes quickly and safely. Flexible comparison and synchronization settings will enable you to set up a customized comparison key and to select tables and fields for comparison and for synchronization.DB Data Difftective can be used for data migrations, verification of (corrupt) data, data auditing etc.

Datanamic SchemaDiff for PostgreSQL

Windows

Datanamic SchemaDiff for PostgreSQL is a tool for comparison and synchronization of database schemas. It allows you to compare and synchronize tables, views, functions, sequences (generators), stored procedures, triggers and constraints between two databases.

DB MultiRun PostgreSQL Edition

Windows

DB MultiRun is a simple tool to execute multiple SQL scripts on multiple databases quickly.Define a list of databases, add SQL scripts to execute on these databases and click 'execute' to run those scripts on the databases in the list. The multi-threaded execution of the SQL scripts makes it complete the task fast. After execution of the scripts, you can examine the results of the executed scripts on each database.

DB Doc for PostgreSQL

Windows

DB Doc helps you document your database schema and generate shareable PDF, HTML, XML, and Microsoft Word document in only 5 steps. Furthermore, the layout of the generated documents are customizable.

SQL Blob Export

Windows

Postico 1 3 – A Modern Postgresql Client Setting Example

SQL Blob Export exports unlimited images and files from your tables or queries in 5 simple steps.

SQL File Import

Windows

SQL File Import allows you to upload files, images, and other data into your database, without having to write any SQL statements. SQL File Import supports PostgreSQL, Firebird, MySQL, Oracle, SQLite, SQL Server, and various ODBC-supported databases (e.g. DB2 and PostgreSQL).

A scripting engine allows you to transform data before importing them into your database. A command line version is also included to allow you to perform unattended upload/import tasks.

SQL Image Viewer

Windows

SQL Image Viewer allows you to retrieve, view, convert and export images stored in Firebird, MySQL, Oracle, SQLite, SQL Server, and various ODBC-supported databases (e.g. DB2 and PostgreSQL). It supports the following image formats: BMP, GIF, JPG, PNG, PSD, and TIFF.

It also allows you to export binary data and recognises the following binary file types: PDF, MP3, WAV, 7Z, BZ2, GZ, RAR, ZIP, and has experimental support for DOC, PPT and XLS file types.

A command line version is also included to allow you to perform unattended scheduled exports of binary data.

SQL Multi Select

Windows

SQL Multi Select is a query tool that allows you to run multiple scripts on multiple servers with a single click. Result sets from different servers are consolidated into a single view, allowing for easy comparison and analysis.

Devart SSIS Data Flow Components for PostgreSQL

Windows

Devart SSIS Data Flow Components for PostgreSQL allow you to integrate database and cloud data via SQL Server Integration Services (SSIS).

Devart SSIS Data Flow Components provide easy to set up cost-effective data integration using SSIS ETL engine. They provide high performance data loading, convenient component editors, SQL support for cloud data sources and lots of data source specific features.

EDB Postgres Enterprise Manager

Windows, Mac OS X, Linux

Postgres Enterprise Manager is the only solution available today that allows you to intelligently manage, monitor, and tune large scale Postgres installations from a single GUI console.

Monitoring features include: server auto-discovery, over 225 pre-configured ready to run probes, custom probes, alert management, personalized alerts, remote monitoring, versatile charting, custom dashboards and web client.

DBA tools include: database objects management, Postgres Expert (best practice configuration settings), Audit Manager, Log Manager, Log Analysis Expert, Capacity Manager and Team Support.

Developer tools include: Query Tool, Data Grid, SQL Profiler, SQL Debugger and Import tools.

Tuning tools include: At-A-Glance performance dashboards, Tuning Wizard, Performance Diagnostics and Index Advisor.

ClusterControl by Severalnines

ClusterControl is an all-inclusive open source database management system that allows you to deplore, monitor, manage and scale your database environments. ClusterControl provides the basic functionality you need to get PostgreSQL up-and-running using our deployment wizard, monitoring and basic management abilities like automatic failover, backups, and restores.

  • Point and Click Replication Deployments - ClusterControl allows you to easily deploy and configure master/slave replication PostgreSQL instances.
  • Advanced Performance Monitoring - ClusterControl monitors queries and detects anomalies with built-in alerts.
  • Automated Failover Handling - ClusterControl detects master failures and automatically promotes a new master
  • Database Automation - ClusterControl lets you manage configurations, schedule, and restore backups.

Reportizer

Reportizer is a database reporting tool, which allows easy creating, modifying, and printing database reports from different types of databases, including PostgreSQL. Reports can be edited in convenient visual report builder or in text mode. It supports calculating fields, multi-column reports, expressions, grouping, displaying images etc. Reportizer can export reports to HTML, XLSX, image, or internal format. There is an ability to load and print reports from command line. Reportizer allows to manage report collections, which can be held either in files or in database tables.

Exportizer Enterprise

Exportizer Enterprise is a database export tool, which can work with PostgreSQL database either as source or destination. It allows to export data to database, file, clipboard, or printer.

  • Possible sources: ODBC data sources, files of DB (Paradox), DBF (dBase, FoxPro), MDB, ACCDB, XLS, XLSX, GDB, IB, FDB, HTML, UDL, DBC, TXT, CSV types, databases specified by ADO connection strings, and databases like Oracle, SQL Server, PostgreSql, DB2, Informix, SQLite, Interbase etc.
  • Possible destinations: file formats like text, CSV, XLS, XLSX, RTF, XML, HTML, PDF, DBF, SLK, SQL script, and relational database of any supported type including PostgreSQL.
  • It is possible to export all or selected tables from an open database at once.
  • The data migration can be done in super-fast batch mode.
  • Exportizer Enterprise can automatically detect the most known image types (JPEG, PNG, GIF, BMP, ICO) in BLOB fields and export them, for example, to HTML or XLSX.
  • Images and other BLOB data can be exported to multiple separate files during a single export operation.
  • There is an ability to specify the source-to-target field mappings.
  • Export operations can be performed either via the program interface or via command line.

TiCodeX SQL Schema Compare

TiCodeX SQL Schema Compare is a tools that allows database administrators to compare multiple database schema in order to manage versioning.
The software runs on Windows, Linux and Mac and supports Microsoft SQL (MS-SQL), MySQL, PostgreSQL, Azure SQL and MS-SQL on Amazon RDS.

Pacifist 3 6 2 3. Key Features:

  • Runs on Windows, Linux and MacOS
  • Localized in English, German and Italian
  • Compare changes between two SQL Database schemas (as example from development to test to production)
  • View database differences and explore schema changes to see what's going on
  • Automatically create full database migration scripts
  • Securely save database and server login details

pgMustard

pgMustard is a performance tool for PostgreSQL that provides a user interface for your EXPLAIN ANALYSE output, as well as tips on what to do to speed up your query.

Features:

  • Quickly see the slowest operations
  • Code snippets to tie operations back to the query
  • Tips to speed up your query💡
  • Does the arithmetic for you (including wall clock times)
  • Explanations of operation types and key concepts
  • Links to relevant documentation and blog posts

Requirements:

  • JSON format plans
  • Any supported version of PostgreSQL
  • English language only
  • Web application, no installation required

ODBC Driver for PostgreSQL by CData

The CData ODBC Driver for PostgreSQL enables real-time access to PostgreSQL data, directly from any applications that support ODBC connectivity, the most widely supported interface for connecting applications with data. The driver wraps the complexity of accessing PostgreSQL data in a standard ODBC driver compliant with ODBC 3.8. The driver hides the complexity of accessing data and provides additional powerful security features, smart caching, batching, socket management, and more.

JDBC Driver for PostgreSQL by CData

The CData JDBC Driver for PostgreSQL offers the most natural way to connect to PostgreSQL data from Java-based applications and developer technologies. The driver wraps the complexity of accessing PostgreSQL data in an easy-to-integrate, 100%-Java JDBC driver. The driver hides the complexity of accessing data and provides additional powerful security features, smart caching, batching, socket management, and more.

ADO.NET Provider for PostgreSQL by CData

The CData ADO.NET Provider for PostgreSQL offers the most natural way to access PostgreSQL data from .NET applications. The provider wraps the complexity of accessing PostgreSQL data in an easy-to-integrate, fully managed ADO.NET Data Provider.The provider hides the complexity of accessing data and provides additional powerful security features, smart caching, batching, socket management, and more.

Excel Add-In for PostgreSQL by CData

The CData Excel Add-In provides the easiest way to connect to PostgreSQL data from Excel. From the CData ribbon, you can select PostgreSQL data as tables and columns into the spreadsheet. The spreadsheet is then linked with the remote data. To update the data, edit the spreadsheet.

SSIS Components for PostgreSQL by CData

The CData SSIS Components for PostgreSQL enable you to connect SQL Server with PostgreSQL data through SSIS Workflows. The components wrap the complexity of accessing PostgreSQL data in standard SSIS data flow components. You can then connect and synchronize PostgreSQL tables with SQL Server tables.The components hide the complexity of accessing data and provide additional security features, smart caching, batching, socket management, and more.

Power BI Connector for PostgreSQL by CData

The CData Power BI Connector for PostgreSQL offers self-service integration with Microsoft Power BI. The connector facilitates live access to PostgreSQL data in Power BI from the Get Data window. The connector also provides direct querying to visualize and analyze PostgreSQL data.

Other Resources

PostgreSQL Clients - list of UI's for accessing your db contents (enter sql, get back the results)

Postico 1 3 – A Modern Postgresql Client Settings

Design Tools - tools for designing and visualizing database schemas

Postico 1 3 – A Modern Postgresql Client Setting Tool

Old possibly abandoned projects, see Community_Guide_to_PostgreSQL_Tools_Abandoned

Retrieved from 'https://wiki.postgresql.org/index.php?title=Community_Guide_to_PostgreSQL_GUI_Tools&oldid=35305'




broken image