码迷,mamicode.com
首页 >  
搜索关键字:姚博文 postgresql liste    ( 3186个结果
PostgresSQL客户端pgAdmin4使用
1.说明 pgAdmin 4是一款为PostgreSQL设计的可靠和全面的数据库设计和管理软件, 它允许您连接到特定的数据库,创建表和运行各种从简单到复杂的SQL语句。 它支持的操作系统包括Linux,Windows,Mac OS X。 这里使用的pgAdmin 4是安装PostgreSQL数据库时 ...
分类:数据库   时间:2020-02-13 14:34:52    阅读次数:284
postgresql + omniDB
docker:组装 使用Postgres数据库的web应用 docker exec :在运行的容器中执行命令. here docker exec -it db /bin/bash ...
分类:数据库   时间:2020-02-10 22:52:30    阅读次数:83
centos7安装postgreSql11
postgreSql的安装流程官网都已经列出,https://www.postgresql.org/download/linux/redhat/。 按照官网给的流程安装: #安装rpm源 [root@guangzhou src]# yum install https://download.postg ...
分类:数据库   时间:2020-02-10 22:45:29    阅读次数:131
postgres 注意事项
PostgreSQL对表名、字段名都是区分大小写的。在图形化界面可以正常新建。用SQL语句的时候需要加双引号,如果jdbc查询等处,记得使用转义符号。 PostgreSQL在SQL语句中对大小写是不敏感的。 select ID from t_user 和 select id from t_user都 ...
分类:其他好文   时间:2020-02-10 12:02:38    阅读次数:58
Windows 上安装 PostgreSQL 详解
这里使用 EnterpriseDB 来下载安装,EnterpriseDB 是全球唯一一家提供基于 PostgreSQL 企业级产品与服务的厂商。 下载地址:https://www.enterprisedb.com/downloads/postgresql 双击下载安装包,开始安装 你可以修改安装路径 ...
分类:数据库   时间:2020-02-09 11:55:01    阅读次数:87
操作指南:通过Rancher在K8S上运行PostgreSQL数据库
通过Rancher Kubernetes Engine运行高可用 PostgreSQL
分类:数据库   时间:2020-02-06 21:37:44    阅读次数:104
PostgreSQL行级策略实验
行级策略实验 创建测试表并插入数据: TEST=# create table test(id serial primary key, user_name varchar(32), crt_time timestamp default now()); CREATE TABLE TEST=# inser ...
分类:数据库   时间:2020-02-04 18:52:10    阅读次数:119
gitlab修改root密码
在root用户下,执行 [root@localhost ~]# gitlab-rails console production GitLab: 11.0.4 (edb037c) GitLab Shell: 7.1.4 postgresql: 9.6.8 Loading production envi ...
分类:其他好文   时间:2020-02-04 10:21:17    阅读次数:85
nginx 提示the "ssl" directive is deprecated, use the "listen ... ssl" directive instead
该问题是由于新版nginx采用新的方式进行监听https请求了解决方式如下: 在listen中改为 listen 443 ssl; 删除ssl配置 # ssl on; 解决完成前后的配置如下解决前: server { listen 443 ; ssl on; } 解决后 server { liste ...
分类:其他好文   时间:2020-02-02 19:29:35    阅读次数:76
创建多个数据库服务
1、管理员运行命令提示符 2、进入postgresql的安装bin目录 cd /d D:\PostgreSQL\12\bin 3、执行 initdb -D D:\PostgreSQL\odoo12\data -g --locale=chinese-simplified_china.936 -E UT ...
分类:数据库   时间:2020-02-02 13:50:13    阅读次数:109
3186条   上一页 1 ... 32 33 34 35 36 ... 319 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!