
postgres
文章平均质量分 60
flying-piggy
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Postgres Schema information_schema pg_catalog
今天讨论Postgres中两个重要的系统Schema:information_schema与pg_catalog首先,我们通过查看pg_catalog.pg_namespace来查看当前数据库中全部的Schemaqingping=> select oid,* from pg_catalog.pg_namespace; oid | nspname | n...原创 2018-08-21 01:02:47 · 12192 阅读 · 1 评论 -
PostgreSQL PREPARE语句与JDBC中PreparedStatement语句关系
1. PostgreSQL(PG) PREPARE 语句qingping=> \h prepareCommand: PREPAREDescription: prepare a statement for executionSyntax:PREPARE name [ ( data_type [, ...] ) ] AS statementqingping=> pre...原创 2018-10-02 00:12:51 · 3083 阅读 · 0 评论 -
postgres支持kerberos认证
在阅读此博客之前,建议阅读一下下博文,了解kerberos的基础知识,本文重在介绍如何使postgres支持kerberos认证。参考博文:[1] http://web.mit.edu/Kerberos/dialogue.html[2] http://www.kerberos.org/software/tutorial.html[3] https://baike.baidu.com/ite...原创 2019-08-04 22:16:25 · 956 阅读 · 0 评论 -
使用ident认证方式连接postgres数据库
使用ident认证方式连接postgres数据库postgres支持多种用户认证方式什么是ident服务postgres支持ident认证的原理实验验证环境准备实验设计数据库端相关配置客户端连接认证postgres支持多种用户认证方式 postgres是当前流行的开源关系型数据库,用户认证是数据库系统最外层的安全保护措施,pg在用户认证这部分即支持自身的口令认证(password,md5...原创 2019-08-11 19:32:36 · 2882 阅读 · 0 评论