pgAdmin 查看索引列表
pgAdmin view list of indexes
这似乎是一个如此简单的问题,我觉得我必须忽略一些东西,但唉,我在这里,因为我在互联网上找不到其他人问这个...
如何在 pgAdmin 中查看索引列表?
我知道我可以 select 一个 table,然后查看 tables 索引...但是我想要的(我猜我已经习惯了来自 Oracle 和 TOAD 的世界)是为了能够快速查看我的所有索引。 (我知道我可以写一个 SQL,但这不是违背了 GUI 的目的吗?)
使用 pg_indexes 视图列出索引。 (来自 google):
The pg_indexes view allows you to access useful information on each index in the PostgreSQL database. The pg_indexes view consists of five columns: schemaname: stores the name of the schema that contains tables and indexes.
对我来说,UI 并不能替代 SQL 语句。
我在我的公司使用 SQL Management Studio 和 Oracle Enterprise Manager,我使用 SQL 查询很多信息。从我的角度来看,UI 支持您完成最常见的任务,您肯定可以在数据库级别上做更多的事情。
这似乎是一个如此简单的问题,我觉得我必须忽略一些东西,但唉,我在这里,因为我在互联网上找不到其他人问这个...
如何在 pgAdmin 中查看索引列表?
我知道我可以 select 一个 table,然后查看 tables 索引...但是我想要的(我猜我已经习惯了来自 Oracle 和 TOAD 的世界)是为了能够快速查看我的所有索引。 (我知道我可以写一个 SQL,但这不是违背了 GUI 的目的吗?)
使用 pg_indexes 视图列出索引。 (来自 google):
The pg_indexes view allows you to access useful information on each index in the PostgreSQL database. The pg_indexes view consists of five columns: schemaname: stores the name of the schema that contains tables and indexes.
对我来说,UI 并不能替代 SQL 语句。 我在我的公司使用 SQL Management Studio 和 Oracle Enterprise Manager,我使用 SQL 查询很多信息。从我的角度来看,UI 支持您完成最常见的任务,您肯定可以在数据库级别上做更多的事情。