PostgreSQL maestro是什么卡好不好

How to connect mapguide maestro to postgresql/postgis - Stack Overflow
Join the Stack Overflow Community
Stack Overflow is a community of 7.1 million programmers, just like you, helping each other.
J it only takes a minute:
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.
16.2k75888
Your Answer
Sign up or
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Post as a guest
By posting your answer, you agree to the
Not the answer you're looking for?
Browse other questions tagged
rev .25795
Stack Overflow works best with JavaScript enabled出处:http://xmarker. 之前一直没有认真的学习pg的wal日志相关的参数,发现对这一部分有些不清楚,结合文档又梳理了一遍,浅浅的记录一下,因为wal日志非常重要,并且对性能影响很大,在生产库上要小心调整。
fsync :控制wal日志刷新是否开启刷新到磁盘,此参数控制wal_sync_method参数的刷新方法,如果fsync为off,则wal_sync_method的方法是没有意义的,
如果没开启这个参数,则可能由于wal日志块没有刷新到磁盘永久存储而导致故障发生后实例出现块折断(oracle称其为block curruption)
2.synchronous_commit:
synchronous_commit:同步提交参数, 控制事务提交后返回客户端是否成功的策略,可选值为:on, remote_write, local, and off.当为on时还要看是否有同步备库,因此为on时表现如下:
2.1 为on且没有开启同步备库的时候,会当wal日志真正刷新到磁盘永久存储后才会返回客户端事务已提交成功,
2.2 当为on且开启了同步备库的时候(设置了synchronous_standby_names),必须要等事务日志刷新到本地磁盘,并且还要等远程备库也提交到磁盘才能返回客户端已经提交.
off:写到缓存中就会向客户端返回提交成功,但也不是一直不刷到磁盘,延迟写入磁盘,延迟的时间为最大3倍的wal_writer_delay参数的(默认200ms)的时间,所有如果即使关闭synchronous_commit,也只会造成最多600ms的事务丢失,此事务甚至包括已经提交的事务(会丢数据),但数据库确可以安全启动,不会发生块折断,只是丢失了部分数据,但对高并发的小事务系统来说,性能来说提升较大。
remote_write:当事务提交时,不仅要把wal刷新到磁盘,还需要等wal日志发送到备库操作系统(但不用等备库刷新到磁盘),因此如果备库此时发生实例中断不会有数据丢失,因为数据还在操作系统上,而如果操作系统故障,则此部分wal日志还没有来得及写入磁盘就会丢失,备库启动后还需要想主库索取wal日志。
local:当事务提交时,仅写入本地磁盘即可返回客户端事务提交成功,而不管是否有同步备库
另外需要注意的是,如果没有设置同步备库,则 on/remote_write/local都是一样的,仅等待事务刷新到本地磁盘.
而且此参数还可以局部设置,当有临时批量任务时可以这样设置:
SET LOCAL synchronous_commit TO OFF;
这样局部事务可向备库异步的方式同步,而其他重要的事务以同步的方式向备库同步。
3.wal_sync_method
wal_sync_method :wal日志刷新方法,可选值为open_datasync/fdatasync/fsync/fsync_writethrough/open_sync
linux系统默认为fdatasync,以open开头的在某些系统上不支持
4.full_page_writes
full_page_writes: 是否开启全页写入,此参数是为了防止块折断的一种策略,关于块折断,每种数据库都会遇到这样的问题,起因是这样的:linux操作系统文件系统一个块一般是4k,而数据库则一般是一个块8k,当数据库的脏块刷新到磁盘上时,由于底层是两个块组成的,比如刷第一个操作系统块到磁盘上了,而当刷第二个操作系统块的时候发生了停电等突然停机事故,则就发生了块折断(数据块是否折断是根据块的checksum值来检查的),为了避免这种事故,pg采用了这样的机制:
当checkpoint后的一个块第一次变脏后就要整块写入到wal日志中,后续继续修改此块则只把修改的信息写入wal日志中,如果在此过程中发生了停电,则实例启动后会从checkpoint检查点,之后开始进行实例恢复,如果有块折断,则在全页写入的块为基础进行恢复,最后覆盖磁盘上的折断块,所以当每次checkpoint后如果数据有修改都会进行全页写入,因此控制checkpoint的
间隔是否重要,如果checkpoint_segments设置太小就会造成频繁的checkpoint,进而导致写入了过多的全页.mysql为了防止块折断采用了double write,oracle采用了redo+undo机制,其中undo记录了前镜像,而redo则既记录了修改数据又记录了undo块。
5.wal_buffers
wal_buffers :wal缓冲区,默认为-1,大小为1/32的shared_buffer,最小不少于64k,最大不大于一个wal_segment(默认16M大小),一般保持默认即可,因为过了wal_writer_delay(默认200ms)总会刷新清空此缓存,设置太大了也用不上.
6.wal_writer_delay
wal_writer_delay:前面已经说过,这有点类似oracle和mysql的1s定时写日志策略,每隔这么长时间就会刷wal日志缓冲区的数据,然后sleep,到点后再刷,如此循环往复.
<mit_delay
commit_delay :提交的延迟时间,如果设置了此参数,则会commit后延迟一段时间再进行提交,此机制可以合并其他事务进而一起进行组提交,不过合并的事务数是有限制的,要至少有commit_siblings参数个事务等待提交的时候才会延迟,所有当有大量事务的时候会延迟,而如果事务很稀少就不会再被延迟了.
<mit_siblings
commit_siblings :组提交个数的最少个数,此参数上面已经进行说明
相关 [postgresql wal 日志] 推荐:
- x-marker的博客
之前一直没有认真的学习pg的wal日志相关的参数,发现对这一部分有些不清楚,结合文档又梳理了一遍,浅浅的记录一下,因为wal日志非常重要,并且对性能影响很大,在生产库上要小心调整. fsync :控制wal日志刷新是否开启刷新到磁盘,此参数控制wal_sync_method参数的刷新方法,如果fsync为off,则wal_sync_method的方法是没有意义的,.
- x-marker的博客
虽然有zabbix等工具监控着pg数据库,但还是有很多信息不能监控到,所以想通过定期分析pg的日志来掌握数据库的运行状态. pgbadger是一款开源的日志分析工具,采用perl编写,项目地址为:
/dalibo/pgbadger ,下面就使用简要记录下. 直接git clone或者下载zip包并上传到pg数据库服务器,然后解压:.
- Kai Chen - Solidot
开源数据库项目PostgreSQL发布了v9.1版. 新版本主要的特性包括:同步复制,序列化快照隔离,支持基于列的排序,近邻邻近索引,外来数据封装,支持SELinux许可控制,等等.
时隔一年之后,开源数据库PostgreSQL发布了v9.2版. 主要新特性包括:原生JSON支持,覆盖索引(covering indexes),改进复制和性能等. PostgreSQL显著改善了可伸缩性:线性可扩展性支持最高64核,仅扫描索引,减少CPU消耗;改进垂直可伸缩性:有效利用大服务器硬件资源,锁管理,仅访问索引等底层操作允许数据库引擎处理更大的工作负荷——每秒最高35万只读查询,每秒写入1.4万条数据.
vampire告诉我服务器上安装好了postgreSQL,他也一直在推荐这个玩意,所以了解了一下. Mysql 使用太广泛了,以至于我不得不将一些应用从mysql 迁移到postgresql, 很多开源软件都是以Mysql
作为数据库标准,并且以Mysql 作为抽象基础的,但是具体使用过程中,发现Mysql
有很多问题,所以都迁移到postgresql上了,转一个Mysql 和Postgresql 对比的文章:.
- 阮一峰的网络日志
自从MySQL被Oracle收购以后,
PostgreSQL逐渐成为开源关系型数据库的首选. 本文介绍PostgreSQL的安装和基本用法,供初次使用者上手. 以下内容基于Debian操作系统,其他操作系统实在没有精力兼顾,但是大部分内容应该普遍适用. 首先,安装PostgreSQL客户端. 然后,安装PostgreSQL服务器.
- CSDN博客推荐文章
转载请注明原文出处:
http://blog.csdn.net/roddick621. PostgreSQL配置优化. 200W(整个数据库大小约为300M). 准备命令:pgbench -i -s 20 pgbenchdb. 测试命令:pgbench -r -j4 -c4 -T60 testdb.
- 数据库 - ITeye博客
通过执行 MySQL 命令(mysqld)启动实例. 一个实例可以管理一个或多个数据库. 一台服务器可以运行多个 mysqld 实例. 一个实例管理器可以监视 mysqld 的各个实例. 通过执行 Postmaster 进程(pg_ctl)启动实例. 一个实例可以管理一个或多个数据库,这些数据库组成一个集群.
- 开源中国社区最新新闻
SQL Maestro Group 发布了 PostgreSQL Maestro 14.5 ,这是一个强大的 Windows 下图形化的 PostgreSQL 数据库服务器管理和开发的解决方案. 新版本可通过这里
- Tairan Wang - ITeye资讯频道
PostgreSQL 9.1发布. PostgreSQL(发音为Post-gress-cue-ell)是一个自由的对象-关系数据库服务器(数据库管理系统),基于灵活的 BSD风格许可证. PostgreSQL支持大部分 SQL 标准并且提供了许多其他现代特性:复杂查询、外键、触发器、视图、事务完整性、多版本并发控制等.
坚持分享优质有趣的原创文章,并保留作者信息和版权声明,任何问题请联系:@。xyz資訊工坊
xyz軟體銀行
當前位置:
程式軟體光碟
電視電腦遊戲
專業知識教學
電視電影音樂娛樂
..::我的購物車::..
..::熱門關鍵字::..Subscribe to our news:
Testimonials
Jad Cooper: &Your program is the best. I have only few hours but now I make very great data for my meeting&.
PostgreSQL Maestro
PostgreSQL Maestro
PostgreSQL Maestro is the premier PostgreSQL GUI admin tool for database management, control and development. Key features include:
Support for all the PostgreSQL server versions from 7.3
Easy database object management
Database Designer
PL/pgSQL Debugger
Comfortable access to PostgreSQL security features
Data management: editing, grouping, sorting and filtering abilities
Handy SQL Editor with code folding and multi-threading
Visual Query Builder with support for subqueries and UNIONS
Working with remote PostgreSQL servers via SSH or HTTP tunnel
Data export/import to/from the most popular formats
Powerful BLOB Viewer/Editor
The application also provides you with a powerful set of tools to edit and execute SQL scripts, build visual diagrams for numeric data, compose OLAP cubes, and much more.
Related solutions
A complete MySQL GUI admin tool with support of such advanced MySQL features as views, procedures, triggers, and table partitioning.
Your best guide in the world of Oracle.
A comprehensive IDE for all DBAs and developers. Use it to manage any SQL Server from 7.0 to 2016 and Azure SQL Database!
Makes SQLite database management even more easier than one can imagine.
Various PostgreSQL data management tools with a flexible task scheduler.
Builds full-fledged web database applications in a few mouse clicks.
Migrates any database to PostgreSQL in just five simple steps.
Compares PostgreSQL database contents and synchronizes differences.
Top 10 reasons to use PostgreSQL Maestro
PostgreSQL Maestro supports all the latest versions of PostgreSQL server
PostgreSQL security system is easy and clear in PostgreSQL Maestro
PostgreSQL Maestro
is incredibly easy in database objects management
Even a newbie can use PostgreSQL Maestro admin tool
PostgreSQL Maestro manager allows you to create and execute queries in the most convenient way
PostgreSQL Maestro provides you with advanced data export and import abilities
PostgreSQL Maestro
has an ability to view BLOB data in various ways
PostgreSQL Maestro allows you to build diagrams based on PostgreSQL data
PostgreSQL Maestro allows you to create the SELECT statements visually
PostgreSQL Maestro admits to flexible customization
Company news
New version comes with PostgreSQL 9.6 compatibility, support for row-level security policies and a number of other PostgreSQL 9.5 new features, updated BLOB Editor and other useful things.
New version introduces enhanced Tablespace Editor, improved SQL Formatter, new encryption algorithms in data grids, updated data export and data import tools and some other new features.
New version introduces PostgreSQL 9.4 compatibility, support of materialized views, range types and some other latest PostgreSQL features, dramatically improved Function Editor, enhanced Data Import abilities, data export to JSON, and other new features.
This article discloses the ways of role management provided by PostgreSQL Maestro. Learn how to create, edit, grant and carry out other manipulations with roles using our product.
Feature of the day
PostgreSQL Maestro allows you to filter the database explorer content using special panel.
PostgreSQL Maestro: Even a newbie can create a new domain using Create Domain Wizard.

我要回帖

更多关于 launcher.maestro.dll 的文章

 

随机推荐