加载扩展create extension postgres_fdw; 创建远程数据库 server_remote_yzt2000db hostaddr为 '172.18.4.35'port 为 '5432' dbname 为 'yzt2000db'create server server_remot ...
分类:
数据库 时间:
2020-07-02 19:45:05
阅读次数:
72
进入指定目录: # cd /var/lib/pgsql/9.3/data/ 使用vi编辑pg_hba.conf文件 # vi pg_hba.conf 以上配置为所有IP及网关都允许访问,使用MD5认证。 postgres用户可访问所有数据库 bret用户仅允许访问community、communit ...
分类:
数据库 时间:
2020-07-01 00:15:23
阅读次数:
93
postgresql中,对表的权限控制比较严格,很多事情只有owner才有权限去做。所以我们尽量用onwer账户去操作。但是有的时候我们需求去批量修改owner,比如导入的表结构。但是官方并没有提供比较好的命令。我们可以用拼接sql的方式去完成这个命令。1.查看有哪些表 select * from ...
分类:
数据库 时间:
2020-06-29 18:47:03
阅读次数:
220
pg9.6 或 pg10 在Windows Server 2012 R2 DataCenter 中使用。 使用如下建库语句,建库时 CREATE DATABASE upmap WITH OWNER = postgres ENCODING = 'UTF8' LC_COLLATE = 'Chinese ...
分类:
编程语言 时间:
2020-06-29 15:32:01
阅读次数:
407
MIMIC-III 免费公开的重症监护医学信息数据库。包含2001年至2012年之间进入重症监护病房的成年患者的53423例不同的医院入院数据和2001年至2008年之间收治的7870名新生儿数据。 Home | Github | Doc Tables 数据库总共包含26个数据表 admission ...
分类:
其他好文 时间:
2020-06-29 11:31:02
阅读次数:
182
# -*- coding: utf-8 -*- # Define your item pipelines here # # Don't forget to add your pipeline to the ITEM_PIPELINES setting # See: https://docs.scra ...
分类:
其他好文 时间:
2020-06-28 09:23:45
阅读次数:
56
debug PostgreSQL 9.6.18 using Eclipse IDE on CentOS7 1.概览 这个文档指导如何在Centos7下,使用Eclipse IDE 调试PostgreSQL Linux: CentOS7 Postgres: postgresql-9.6.18.tar. ...
分类:
数据库 时间:
2020-06-21 19:35:23
阅读次数:
59
./createuser --interactive iomsx;Shall the new role be a superuser? (y/n) nShall the new role be allowed to create databases? (y/n) nShall the new rol ...
分类:
其他好文 时间:
2020-06-21 17:42:25
阅读次数:
78
数据库及pg_rman版本 postgresql:(PostgreSQL) 12.3 pg_rman:pg_rman-1.3.9-pg12.tar.gz 编辑环境变量 $ iduid=5432(postgres) gid=5432(postgres) groups=5432(postgres)$ p ...
分类:
数据库 时间:
2020-06-21 00:43:29
阅读次数:
99
参考:PostGreSQL 结合 Hibernate 在项目中的使用小结 1、主键生成策略设置为 identity 主键生成策略设置为 native时 打印 sql: 09:24:52.551 INFO (TaskFacadeImpl.java :43) : TaskFacadeImpl#add H ...
分类:
数据库 时间:
2020-06-20 11:24:52
阅读次数:
76