码迷,mamicode.com
首页 >  
搜索关键字:psql    ( 253个结果
postgresql数据库基础
创建只读账号1.1以初始化账号登入[root@localhost~]#psql-Upostgres1.2创建用户postgres=#createroledevelopwithloginpassword‘123456‘;CREATEROLEpostgres=#selectusenamefrompg_user;usename----------postgrestestdevelop(3rows)1.3切换数据库\ccurrent_product1.4赋予只读..
分类:数据库   时间:2017-01-04 17:20:14    阅读次数:146
“psql: could not connect to server: Connection refused” Error when connecting to remote database
问题: I am trying to connect to a postgres database installed in a remote server using the following command: psql -h host_ip -U db_username -d db_name ...
分类:数据库   时间:2016-12-25 20:50:47    阅读次数:425
postgresql修炼之道学习笔记(2)
随后的章节 介绍了基础的sql,这个我略过了,我喜欢在开发的时候,慢慢的研究,毕竟有oracle的基础。 现在,学习psql工具 使用create database创建数据库的时候,出现如下问题: create database testdb;总是提示出错。估计是testdb是关键字? ...
分类:数据库   时间:2016-12-21 16:08:44    阅读次数:185
PG数据库之间的导入导出
本文将介绍如何对PG数据库进行导入、导出,主要利用的是PG自带的pg_dump、pg_dumpall、pg_restore、psql等命令,版本是9.4(不同版本的pg_dump \ pg_restore选项可能会有些不同,请注意)。导出、导入的整体思路是: 数据的导出这里主要采用pg_dump工具 ...
分类:数据库   时间:2016-12-16 14:21:08    阅读次数:657
POSTGRESQL 数据库导入导出
导入整个数据库 psql -U postgres(用户名) 数据库名(缺省时同用户名) < /data/dum.sql 导入整个数据库 psql -U postgres(用户名) 数据库名(缺省时同用户名) < /data/dum.sql 导出整个数据库 pg_dump -h localhost - ...
分类:数据库   时间:2016-12-12 23:22:47    阅读次数:228
postgresql的/d命令
ostgreSQL-psql常用命令 文章索引 [隐藏] \d命令 \d命令 1 2 3 格式: \d [ pattern ] \d [ pattern ] + 该命令将显示每个匹配关系(表,视图,索引,序列)的信息,包括对象所有的列,它们的类型,表空间(如果不是默认的)和任何特殊属性(如NOT N ...
分类:数据库   时间:2016-12-04 13:54:43    阅读次数:549
Gitlab完美安装【CentOS6.5安装gitlab-6.9.2】
摘要: 拆腾了几天,终于在今天找到了快速安装Gitlab的方法。CentOS6.5安装gitlab-6.9.2 参考网址:https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md#installation 安装gitlab版 ...
分类:其他好文   时间:2016-12-02 11:54:18    阅读次数:291
Working with Data Source 12
In command line, psql helps you to manage and connect the database:1 1. Type psql in command line to enter the psql command line tool. 2. In the shell ...
分类:其他好文   时间:2016-11-29 09:27:52    阅读次数:163
关于postgresql——常用操作指令
创建数据库 CREATE DATABASE test WITH OWNER = postgres ENCODING = 'UTF8'; 进入控制台方法,在postgreSQL的安装目的bin下执行命令: psql 数据库名, 例: /usr/local/pgsql/bin/psql mydb 指定h ...
分类:数据库   时间:2016-11-17 19:50:05    阅读次数:194
VM virtualBox网络地址设置
vm virtualbox网络地址为127.0.0.1解决方案及 VM virtualBox网络地址设置教程 ...
分类:其他好文   时间:2016-11-14 01:10:20    阅读次数:312
253条   上一页 1 ... 14 15 16 17 18 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!