E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Psql
PostgreSql备份和恢复
PostgreSQL内置不少的工具,寻找的备份恢复方案就在其中:pg_dump,
psql
。这两个指令在数据库的安装目录下用法:备份数据库,指令如下:pg_du
寰宇001
·
2020-07-10 00:58
数据库
PostgreSQL入门之安装篇(Windows+Mac OS平台)
目录Windows上安装PostgreSQL下载安装包选择二进制包Windows平台版安装数据库运行安装程序设置安装信息开始安装验证登录启动数据库服务
psql
登录数据库后续操作注册服务PgAdmin连接数据库
darion@Postgresql
·
2020-07-09 23:17
PostgreSQL入门
PostgreSQL导入sql文件
navicat导入sql文件报错,之后查询了一下资料,得到了正确的导入方式:1.命令行(cmd或powershell)进入PostgreSQL安装目录cd\PostgreSQL\11\bin2.执行语句
psql
-dethgateway-Uethgateway-fD
极客时代
·
2020-07-09 23:53
PostgreSQL
命令行方式PostgreSQL数据库添加新用户
1、切换到Linux用户postgres,然后执行
psql
;$su-postgres-bash-4.2$
psql
Password:******postgres=#此时就进入到了pgsql数据库了2、创建数据库新用户
新晋小菜鸟
·
2020-07-09 23:24
数据库
Linux
PostGIS教程三:创建空间数据库
目录一、PgAdmin二、创建一个数据库三、函数列表一、PgAdminPostgreSQL有许多管理工具,主要的一个是
psql
,一个输入SQL命令查询的命令行工具。
不睡觉的怪叔叔
·
2020-07-09 23:18
数据库
pgsql 命令行常用命令
登录数据库:
psql
-Uuser_name-ddatabase_name-hserverhost-pport-Wpassword退出pg连接:\q查看所有数据库:\l切换数据库:\cdatabase_name
懒的去其
·
2020-07-09 23:40
postgresql
centos7下备份postgresql数据库为.bak文件
international_db.bak参数:-Upostgres连接用户名-h数据库服务器地址我上面的命令中的international_db是我要备份的数据库名称>后面是生成的备份文件存放路径和名称恢复数据
psql
-h1
刘延林 | 梦陆
·
2020-07-09 22:32
linux
postgresql入门笔记(详细)
1)登录命令:
psql
-h172.16.35.179-Uusername-ddbname然后输入用户的密码即可进入
psql
环境。
Hacker_wtm
·
2020-07-09 22:12
数据库
后端
postgres应用实战(一):
psql
功能与应用
postgres应用实战(一):
psql
功能与应用-使用
psql
连接数据库和基本选项介绍-
psql
元命令介绍-
psql
执行sql脚本-*使用
psql
定制日常维护脚本**一.使用
psql
连接数据库和基本选项介绍
qq_17745609
·
2020-07-09 22:33
postgres
postgres使用pg_resetxlog命令重置一个数据库集群的预写日志以及其它控制内容
情景:今天像平常一样连接数据库,出现了一下信息,[
[email protected]
]$
psql
psql
:couldnotconnecttoserver:拒绝连接Istheserverrunningonhost
奋斗_CQS
·
2020-07-09 21:21
postgresql
Postgres 致命错误: 对不起, 已经有太多的客户 (pgjdbc: autodetected server-encoding to be GB2312, if the message is n
ERRORcom.zgph.ComputingCommandRunner-FailedtoobtainJDBCConnection;nestedexceptionisorg.postgresql.util.
PSQL
Exception
鲁尼的小宝贝
·
2020-07-09 21:31
解决问题
Postgresql 之 编码自动转换原则与乱码显示原因
1)通过HighgoDB数据库的SQLShell(
psql
)连接数据库服务器Server[localhost]:192.168.137.222Database[highgo]:testdbPort[5866
PostgreSQL_HighGoDB
·
2020-07-09 21:09
Highgo
DB
PostgreSQL
PostgreSQL之 事务的提交与回滚
在PostgreSQL的
psql
中,如果执行一个dml或ddl语句,没有先运行begin;的话,一执行完就马上提交了,不能回滚,这样容易导致误操作的发生,避免这个风险的办法是关闭自动提交,方法如下:设置
PostgreSQL_HighGoDB
·
2020-07-09 21:38
PostgreSQL
Highgo
DB
psql
: could not connect to server的一种浅显可能
我们在使用postgresql数据库的时候经常遇到的问题:[highgo@hgdb~]$
psql
psql
:couldnotconnecttoserver:Nosuchfileordirectory Istheserverrunninglocallyandaccepting
PostgreSQL_HighGoDB
·
2020-07-09 21:37
PostgreSQL
Highgo
DB
postgreSQL在Windows上的基本操作
可以自己写一个批处理文件来用:@echooffREMCopyright(c)2012-2017,EnterpriseDBCorporation.AllrightsreservedREMPostgreSQLserver
psql
runners
陆南亭
·
2020-07-09 20:57
postgreSQL入坑之路
PostgreSQL -
psql
的使用与退出
PostgreSQL连接数据库的两种方式PostgreSQL在安装时自带了pgAdmin和
psql
,pgAdmin是可视化工具,
psql
是命令行工具。
雨临Lewis
·
2020-07-09 19:37
数据库
POSTGRESQL 数据库导入导出
pg_dump详解/使用举例目录1.pg_dump导出整个数据库2.pg_dump导出某个表2.1pg_dump及pgsql配置密码导入导出数据3.pgsql导入整个数据库4.pg_dumpall导出及
psql
风情客家__
·
2020-07-09 18:49
postgresql
PostgreSQL登录及修改密码
PostgreSQL登录1、可通过客户端pgAdminIII直接登录通过pgAdminIII登录PG库2、可通过命令行命令:
psql
-h10.10.10.10-Uuser-dpostgres-p55701
谁说大象不能跳舞
·
2020-07-09 18:48
数据库
postsqlgrep
PostgreSQL 学习笔记 快速入门攻略
环境推荐Linux2.安装1.ubuntu下安装PostgreSQL软件包sudoapt-getupdatesudoapt-getinstallposqlgresqlpostgresql-contrib
psql
灰色的猫儿
·
2020-07-09 18:08
postgresql
postgresql
ubuntu
Postgresql 命令行常用操作
1进入数据库默认安装会创建postgres用户,,使用postgres用户,
psql
命令会直接进入数据库(或者修改配置文件/var/lib/pgsql/9.1/data/pg_hba.conf将peer
iteye_20905
·
2020-07-09 17:51
Psql
PostgreSQL的数据存储(一)---概述
1存储层概述PG存储层的实现,主要分为三部分:存储层和数据库系统的关系,参加下表(行数从上到下,是用户访问数据库的过程和数据库管理系统的各模块间的关系层次):层次层次名称代码说明用户接口+用户命令
psql
iteye_2060
·
2020-07-09 17:20
MySQL迁移到PostgreSQL提示不良的类型值 ?
atorg.hibernate.ejb.AbstractEntityManagerImpl.find(AbstractEntityManagerImpl.java:781)...79moreCausedby:org.postgresql.util.
PSQL
Exception
iteye_20007
·
2020-07-09 17:14
问题总结
pgsql中使用jsonb类型
项目环境:数据库使用的g
psql
,框架为grpc,使用proto3协议文档,db层使用mybatis在项目中具体使用方法如下,仅做记录:写操作时:转换代码:JsonbUtils.json2Map(content
知清欢
·
2020-07-09 17:55
后端
sql
psql
数据类型对比
数据类型SQLServerPostgreSQL备注数字型tinyintsmallinttinyint(0-255),smallint(-32768-32767)smallintsmallint,int2int2是smallint别名intintbigintbigintdecimaldecimalnumericnumericfloatreal,float4realdoubleprecision字符型
张永光
·
2020-07-09 16:11
postgres
postgreSQL 命令行方式创建数据库及表
表示要设置密码-e表示命令进行回显第二步:创建数据库createdb-p5432-e-Usamydb-p表示连接端口5432-e表示命令进行回显-U创建数据库的用户名是samydb数据库的名字第三步:连接数据库:
psql
-p
hehong_78
·
2020-07-09 16:26
数据库
Django+Postgresql
PostgreSql简单使用下载安装好后,(因为我的是自带哒所以就不说咋下载安装了,百度上也有一大堆),进入postgresql:sudo-i-upostgres进入postgres用户,然后输入:
psql
西奥斯
·
2020-07-09 16:17
postgresql-postGis空间数据
-bash-4.2$
psql
psql
(10.4)Type"help"forhelp.postgres=#\dxListofinstalledextensionsName|Version|Schema|Description
gguxxing008
·
2020-07-09 16:56
PostgreSql
postgreSQL命令行操作基础-1
products-services-training/pgdownload#windows学习网址:http://www.yiibai.com/html/postgresql/2013/080998.htmlCMD中的命令:1.登录:
psql
-hlocalhost-p5432
gaomin8
·
2020-07-09 16:36
postgreSQL
postgresql导出表结构以及数据到mysql
导出表结构直接使用postgresql命令pg_dump,而导出数据使用
psql
命令的copy。在mysql中导入表结构,我们执行source/path/to/table.sql,我们
luffy5459
·
2020-07-09 15:45
linux
PostgreSQL每日一贴--PL/pgSQL存储过程示例
代码样例--1.
psql
客户端调用存储过程时打印调试信息RAISENOTICE--2.调用函数performfunction_name(...)--3.声明变量--4.返回值--5.替换变量droptableifexiststest_table
出离_1986
·
2020-07-09 15:14
数据库
PostgreSQL
psql
: FATAL: role “postgres” does not exist
I'mapostgresnovice.Iinstalledthepostgres.appformac.Iwasplayingaroundwiththe
psql
commandsandIaccidentallydroppedthepostgresdatabase.Idon'tknowwhatwasinit.I'mcurrentlyworkingonatutorial
dhptkq9465
·
2020-07-09 15:04
根据查询结果设置PostgreSQL
psql
变量
使用PostgreSQL的
psql
命令行工具通过操作员交互或脚本与PostgreSQL数据库进行交互时,通常希望根据特定查询的结果设置
psql
变量。
danpu0978
·
2020-07-09 15:18
ubuntu server 12.04 安装postgresql 9.2
/postgresqlsudoapt-getupdatesudoapt-getinstallpostgresql-9.2安装完毕后修改数据库的默认用户postgres的密码sudo-upostgres
psql
ALTERUSERpostgresWITH
cuisuwang2359
·
2020-07-09 15:00
postgresql 11 的 procedure 里使用 commit、rollback
centos-releaseCentOSLinuxrelease7.4.1708(Core)##su-postgresLastlogin:SatOct2622:55:25CST2019onpts/0$$
psql
数据库人生
·
2020-07-09 15:17
#
postgresql
sql
plpgsql
postgresql 13 对于重复值的 index 优化
centos-releaseCentOSLinuxrelease7.4.1708(Core)##su-postgresLastlogin:FriJun1910:46:55CST2020onpts/0$$$
psql
-c"selectversion
数据库人生
·
2020-07-09 15:17
#
postgresql
opti
table
index
pgsql13
pg_dumpall备份与恢复
bash-4.1$createdbepaydb-bash-4.1$
psql
epaydb
psql
(9.4.3)Type"help"forhelp.epaydb=#createtabletest(aint)
ct028111
·
2020-07-09 15:44
详述PostgreSQL的常见参数和技巧
1.
psql
命令1.1Generaloptions1.1.1-?我们可以
psql
-?或者
psql
--help看下
psql
有哪些可用参数:[postgres@host01~]$p
cssja0232
·
2020-07-09 14:41
psql
数组操作
函数返回类型描述例子结果array_append(anyarray,anyelement)anyarray向一个数组的末端追加一个元素array_append(ARRAY[1,2],3){1,2,3}array_cat(anyarray,anyarray)anyarray连接两个数组array_cat(ARRAY[1,2,3],ARRAY[4,5]){1,2,3,4,5}array_ndims(a
Claroja
·
2020-07-09 14:59
SQL
psql
数据类型
1.数值类型名字存储尺寸描述范围smallint2字节小范围整数-32768to+32767integer4字节整数的典型选择-2147483648to+2147483647bigint8字节大范围整数-9223372036854775808to+9223372036854775807decimal可变用户指定精度,精确最高小数点前131072位,以及小数点后16383位numeric可变用户指定
Claroja
·
2020-07-09 14:59
SQL
Postgres数据库忘记密码,三个步骤解决(windows下)
文件将以下这行hostallall127.0.0.1/32md5改为如下:hostallall127.0.0.1/32trust二、运行cmd,进入postgres安装路径的bin目录,运行如下命令:
psql
-Upostgrespostgres
chuifuhuo6864
·
2020-07-09 14:02
postgresql 拼接对应字符串
Psql
拼接对应字符串(比如一个用户对应多个角色,显示用户和角色)CREATETABLETestTitle(nameVARCHAR(10),titleVARCHAR(20));INSERTINTOTestTitleVALUES
chousuo4213
·
2020-07-09 14:53
pgsql常用操作
登录:
psql
-hlocalhost-p5432postgrespostgres创建表CREATETABLE"public"."
有时间织个毛衣
·
2020-07-09 14:44
pgsql
postgresql常用命令
details/77941039https://blog.csdn.net/warrior_0319/article/details/78091949su-postgrespostgres@ubuntu:~$
psql
caiqiiqi
·
2020-07-09 14:39
Web
安全
postgresql 数据库中数据的导入导出(简单操作+示例)
/test.sqlpostgres@debian:~$ls9.1 test.sql数据的导入:导入数据时首先创建数据库再用
psql
导入:cre
555路过555
·
2020-07-09 13:46
Postgresql
数据库
PostgreSQL commands
PostgreSQLcommandsAccessthePostgreSQLserverfrom
psql
withaspecificuser:1
psql
-U[username];Forexample,thefollowingcommandusesthepostgresusertoaccessthePostgreSQLdatabaseserver
allway2
·
2020-07-09 13:06
postgreSQL数据库导入导出
一、命令导入整个数据库
psql
-Upostgres(用户名)数据库名(缺省时同用户名)data\dum.sql导出某个表pg_dump-hlocalhost-Upostgres(用户名)数据库名(缺省时同用户名
alee_方
·
2020-07-09 13:28
postgre
postgresql系统架构图
默认“*”,无限制日志配置:记录日志,日志路径,日志名称,日志大小配置内存shared_buffers:共享内存大小work_men:执行SQL时使用的内存大小,执行完成自动释放1.1.2.安装管理工具
psql
风神修罗使
·
2020-07-09 12:32
mysql 切换成postgresql 出错
org.quartz.JobPersistenceException:Couldn'tobtaintriggersforjob:不良的类型值long:\x[Seenestedexception:org.postgresql.util.
PSQL
Exception
Tom4J
·
2020-07-09 12:28
开发bug记录
postgresql数据库命令行常用指令操作
、以dbuser的身份连接数据库exampledb:$su-dbuserPassword:Lastlogin:WedMar111:52:07CST2017onpts/[dbuser@master~]$
psql
-dexampledb2
小小青年
·
2020-07-09 11:59
postgresql
PostgreSQL数据库创建、删除、角色权限
Postgresql常见操作指令:连接数据库,默认的用户和数据库是postgres
psql
-Uuser-ddbname切换数据库,相当于mysql的usedbname\cdbname列举数据库,相当于mysql
OneCrazyDog
·
2020-07-09 11:21
PostgreSQL
上一页
22
23
24
25
26
27
28
29
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他