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 的基本操作
1、查看数据库登录到postgresql数据库[postgres@kafzook3~]$
psql
-Upostgres-W提示输入密码:密码输入正确则进入到postgresql数据库。
wyl9527
·
2020-07-10 12:26
PostgreSQL
liux odoo12 安装全过程(包括运行环境和数据库)和postgresql的操作
branch12.0--single-branchodoo122.安装pgsql数据库:sudoapt-getinstallpostgresql3.配置数据库,创建一个用户:1)sudo-upostgres
psql
Python万金油
·
2020-07-10 10:19
odoo
PSQL
Exception: 这个 statement 已经被关闭 解决办法
报错触发条件:在进行正常的JDBC查询的时候,根据id查询多表信息并返回map集合,首先正常查询几次之后进行空值查询时报错,重启服务后正常,一旦查询报错以后每次正常查询都报错.报错信息如下:{"code":500,"msg":"Couldnotsetparametersformapping:ParameterMapping{property='applyid',mode=IN,javaType=c
Oct.ca
·
2020-07-10 10:08
jdbc
flink连接postgresql数据库
写入postgresql数据库packagejdbc.
psql
.csvto
psql
;importorg.apache.flink.api.common.functions.FlatMapFunction
weixin_43315211
·
2020-07-10 10:07
flink
使用命令恢复postgres数据库报错
psql
: FATAL: role "root" does not exist 解决方案
因为是从其他地方备份出来的sql文件,如果直接用pgAdmin4因为格式问题报错inputfileappearstobeatextformatdump.Pleaseuse
psql
。所以换用命令行执行。
mz_老张
·
2020-07-10 10:36
Postgres
postgresql简介
brewinstallpostgresql#安装完成#启动服务pg_ctl-D/usr/local/var/postgresstart#创建数据库mydbcreatedbmydb#登陆进入数据库
psql
mydb
YN66666666
·
2020-07-10 10:18
pg如何安装插件
以自带的插件,bloom插件为例之前装过了,现在尝试删除postgres=#dropextensionbloom;
psql
:ERROR:cannotdropextensionbloombecauseotherobjectsdependonitDETAIL
梁敬彬
·
2020-07-10 09:37
PostgreSQL
使用postgres 数据库时候遇到的坑
于是各种报错,错误一、ERROR:stderr:
psql
:致命错误:对用户"ambari"的对等认证失败错误二、RROR:stderr:
psql
:致命错误:没有用于主机"[local]",用户"test2
无色云
·
2020-07-10 09:34
bug
psql
: FATAL: database “” does not exist
2019独角兽企业重金招聘Python工程师标准>>>转自:https://stackoverflow.com/questions/17633422/
psql
-fatal-database-user-does-not-existLoginusingdefaulttemplate1database
weixin_34313182
·
2020-07-10 08:48
Django与PostgreSQL数据库的那些事
删除
psql
数据库:(以数据库Django名为例:)dropdbDjango;新建数据库并属于django:createdbDjango-Odjango当我们在Django中用了pythonmanage.pysyncdb
weixin_34248023
·
2020-07-10 08:31
PostgreSQL 如何打印函数调用栈信息
增加了调用堆信息的输出.可以用于plpgsqldebug等.测试:pg94@db-192-168-100-216->
psql
psql
(9.4devel)Type"help"forhelp.digoal=
weixin_34150830
·
2020-07-10 08:15
PostgreSQL 10.0 的三种日志
当前使用版本为PostgreSQL[postgres@localhost~]$
psql
psql
(10.7)网络上还存在大量的帖子,关于pg_log,xlog,clog刚刚接触PG的我一直没有找到这些目录
weixin_34097242
·
2020-07-10 08:38
Postgresql UUID的使用。
psql
-ddbname-Udbuser-fD:/develop/database/PostgreSQL/9.3/share/contrib/uuid-ossp.sql定义uuid作为主键,并自动生成主键
weixin_33937778
·
2020-07-10 07:42
Java 使用jdbc 连接PostgreSQL 数据库
2019独角兽企业重金招聘Python工程师标准>>>必须添加rs.next();否则报错org.postgresql.util.
PSQL
Exception:ResultSetnotpositionedproperly
weixin_33935777
·
2020-07-10 07:10
PostgreSQL处理xml数据初步
/bin/
psql
-dedb
psql
(9.2.1.3)"help"でヘルプを表示します.edb=#CREATETABLExmltab01(booksxml);CREATETABLEedb=#INSERTINTOxmltab01
weixin_33928137
·
2020-07-10 07:38
如何知道PostgreSQL数据库下每个数据库所对应的目录
/
psql
psql
(9.1.2)Type"help"forhelp.pgsql=#\lListofdatabasesName|Owner|Encoding|Collate|Ctype|Acces
weixin_33807284
·
2020-07-10 07:46
psql
工具详细使用介绍
psql
介绍
psql
是PostgreSQL中的一个命令行交互式客户端工具,它允许你交互地键入SQL命令,然后把它们发送给PostgreSQL服务器,再显示SQL或命令的结果。
weixin_33755649
·
2020-07-10 07:16
Windows下PostgreSQL命令行执行SQL查询语句
2019独角兽企业重金招聘Python工程师标准>>>C:\ProgramFiles(x86)\PostgreSQL\9.5\bin>
psql
-dwf-Upostgres-c"select*frompublic.wfeCasCard
weixin_33729196
·
2020-07-10 07:55
FATAL: role "root" does not exist解决办法
独角兽企业重金招聘Python工程师标准>>>[root@~]#su - postgresLast login: Wed Apr 1 10:28:10 CST 2015 on pts/2-bash-4.2$
psql
weixin_33713503
·
2020-07-10 07:09
PostgreSQL - invalid input syntax for type timestamp with time zone
SQLError[22007]:ERROR:invalidinputsyntaxfortypetimestampwithtimezone:""Position:33org.postgresql.util.
PSQL
Exception
weixin_30827565
·
2020-07-10 07:19
postgresql插件安装
cdpostgresql-10.6/contrib/exportPATH=$PATH:/usr/local/pgsql/binmakeallmakeinstall2.进入数据库,安装插件su-postgres
psql
createextensiontablefunc
weixin_30827565
·
2020-07-10 07:19
Postgres
psql
: 致命错误: 角色 "postgres" 不存在
问题再现当前环境:postgresql:11.5windows10企业版LTSC64位当运行"C:\ProgramFiles\PostgreSQL\11\scripts\run
psql
.bat"的时候,
weixin_30755709
·
2020-07-10 06:19
postgresql数据库备份和恢复
梦里寻他千百度,伊人却在灯火阑珊处...其实PostgreSQL内置不少的工具,寻找的备份恢复方案就在其中:pg_dump,
psql
。这两个指令在数据库的安装目录
weixin_30753873
·
2020-07-10 06:48
PostgreSQL问题解决--连接数过多
IamtryingtoconnecttoaPostgresqldatabase,IamgettingthefollowingError:Error:org.postgresql.util.
PSQL
Exception
weixin_30570101
·
2020-07-10 06:02
PostgreSQL 插入行、查表、导出
1、连接数据库使用cmd选择安装路径下的
psql
.exe登录用户名为postgres输入密码进行登录。
weixin_30433075
·
2020-07-10 06:38
云数据库有哪些优点劣势?
相比自建数据库,RDS具备如下优势:专业的运维服务:RDS提供的TO
PSQL
功能能够直观地通过图表的方式呈现SQL的运行状态;支持RDS运维的DBA具备多年的MySQL运维经验,负责过易信、云阅读、云音乐等多个大型
wangyiyungw
·
2020-07-10 05:53
postgresql 数据库中数据的导入导出(简单操作+示例)
/test.sqlpostgres@debian:~$ls9.1 test.sql数据的导入:导入数据时首先创建数据库再用
psql
导入:$createdb
桁桁8道
·
2020-07-10 05:48
psql
: FATAL: Ident authentication failed for user “postgres”
django后台用的是postgresql数据库,但是启动是的时候报如下错误:
psql
:FATAL:Identauthenticationfailedforuser“postgres”这个一般是pg_hba.conf
若闻
·
2020-07-10 05:25
多条件模糊查询
array,MapoderMap){Stringsql="from"+Tutil.getTClass(this.getClass()).getSimpleName()+"twhere1=1";Stringma
psql
w1056292190
·
2020-07-10 05:21
postgresql数据库配置
1、设置postgresql数据库密码:su-gitlab-
psql
psql
-h/var/opt/gitlab/postgresql-dgitlabhq_production\passwordgitlab
LiuXingLong
·
2020-07-10 05:02
gitlab安装部署
PostgreSQL 学习总结
1.安装配置2.连接连接数据库,默认的用户和数据库是postgres
psql
-Uuser-ddbname3.数据库操作切换数据库,相当于mysql的usedbname\cdbname列举数据库,相当于mysql
quick5g
·
2020-07-10 05:02
Database
Postgresql 事务的提交与回滚
用过oracle或mysql的人都知道在sqlplus或mysql中,做一个dml语句,如果发现做错了,还可以rollback;掉,但在PostgreSQL的
psql
中,如果执行一个dml,没有先运行begin
bigclouder
·
2020-07-10 04:06
postgressql
postgresql
psql
could not connect to server
Question:
psql
connectionrefused
psql
-h100.80.193.91-Uuser-ddatabase-p5432#Tips:
psql
:couldnotconnecttoserver
majinbo111
·
2020-07-10 04:12
postgreSQL
ubuntu中PostgreSQL使用方法详解
简单说明路径代码如下复制代码/var/lib/postgresql/9.3/查看版本
psql
--version创建用户示例:创建yy用户,密码为yy,创建blogbase数据库,并对yy用户赋予所有权限代码如下复制代码
涤生新
·
2020-07-10 04:53
Linux
bat批量拷贝文件并重命名
开头,echo会拷贝为bili,ios,uo,yyb开头的文件,并保存在上一层目录@echo.echo=====================================:loopset/ptm
pSQL
PATH
code 旭
·
2020-07-10 03:59
脚本
ubuntu下postgresql数据库的安装和调试
在ubuntu下安装postgresqlA,安装数据库sudoapt-getinstallpostgresql查看安装的版本
psql
--versionB,修改数据库里面postgres用户的密码默认安装的
treedemo
·
2020-07-10 03:41
services
Advanced SQL Database Programmer Handbook
http://blog.csdn.net/topmvp-topmvpWrittenbytheworld'sto
pSQL
programmers,thiseBookutilizestheirsubstantialknowledgeinSQLdatabaseprogramming.Withcom
topmvp
·
2020-07-10 03:29
Sql
Language
ubuntu 下postgresql入门
安装好postgresql后,在终端里操作:1.切换到postgresql默认用户(不切换的话无法执行
psql
)sudosu-postgre2.进入postgre命令模式
psql
3.在命令模式下创建数据库用户
tingyuanss
·
2020-07-10 03:09
postgresql
Ubuntu
JDBC-Driver、PostgreSQL的SQL语句参数上限错误分析及解决办法(源码)
JDBC-Driver、PostgreSQL的SQL语句参数上限错误分析及解决办法(源码)Mybatis+PostgreSQL-JDBC-Driver42.1.4批量插入24178条数据(每条30字段).报如下错误:
pSQL
9.6Cause
Morpheus丶
·
2020-07-10 03:37
PostgreSQL
JDBC
PostgreSQL 创建自己的数据库、模式、用户
1.修改PostgreSQL数据库默认用户postgres的密码[root@izwz90tx4egvh4qj3p95vsz~]#sudo-upostgres
psql
psql
(10.4)Type"help"forhelp.postgres
Daozy极限编程
·
2020-07-10 03:57
PostgreSQL
org.postgresql.util.
PSQL
Exception 处理记录
创建带geomtry类型字段的表,代码如下:Stringsql="createtable"+tableName+"(idInt4,geomgeometry);";Connectionconnection=null;Statementstatement=null;try{Class.forName(driver);connection=DriverManager.getConnection(url,
tanju_997
·
2020-07-10 03:02
gis
opengis
PostgreSql:createdb -U postgres mydb 错误:createdb: could not connect to database postgres: FATAL: P
操作系统:Ubuntu运行下面的命令创建名为mydb的数据库createdbmydb得到一个错误:
psql
:FATAL:role"terry"doesnotexist,terry是我的机器名,在postgresql
suirosu
·
2020-07-10 02:21
PostgreSQL 异常处理 addgeometrycolumn
如,在sql或
psql
console中输入’createextensionpostgis;’处理流程:一.sql或
psql
c
songzhilin52
·
2020-07-10 02:40
GeoServer
PostgreSQL
PostgreSql新手入门命令
1命令行登录数据库有两种方式,一是直接在系统shell下执行
psql
命令;而是先进入
psql
环境,然后再连接数据库。
smstong
·
2020-07-10 02:44
数据库
SpringBoot+jpa/mybatis+postgre
psql
实现 Postgresql数据查询
1.加入jar包org.springframework.bootspring-boot-starter-data-jpaorg.postgresqlpostgresqlruntime2’配置application.yml文件spring:datasource:url:jdbc:postgresql://localhost:5432/gupaodbusername:rootpassword:1234
saber872138
·
2020-07-10 01:38
postgresql从入门到菜鸟(五)JDBC连接postgresql数据库
之前都是通过
psql
命令进行数据库的操作,从这一期开始准备写一些如何通过LIBPQ,JDBC,ODBC等方式来postgresql并进行相关的操作,这一期准备先说说JDBC。
韩大猫
·
2020-07-10 01:32
JDBC连接postgresql例子
importjava.sql.DriverManager;importjava.sql.PreparedStatement;importjava.sql.ResultSet;importjava.sql.SQLException;publicclass
Psql
ConnectionTool
韩大猫
·
2020-07-10 01:32
postgresql
Postgres数据库忘记密码,三个步骤解决(windows下)
文件将以下这行hostallall127.0.0.1/32md5改为如下:hostallall127.0.0.1/32trust二、运行cmd,进入postgres安装路径的bin目录,运行如下命令:
psql
-Upostgrespostgres
rick_123
·
2020-07-10 01:38
数据库操作
用sql列出指定路径的.bak文件名
TempInfocreatetable#TempInfo(filenamenvarchar(200))insertinto#TempInfoexecmaster..xp_cmdshellN'dir/b\\Shjy
psql
dev
珝珝
·
2020-07-10 00:30
sqlserver
postgresql终端命令和postgersql数据库的备份
安装好postgresql数据库之后进入
psql
shellwindows下终端一般是默认在C:\ProgramData\Microsoft\Windows\StartMenu\Programs\PostgreSQL9.6
不一样的丶我们
·
2020-07-10 00:48
odoo
上一页
21
22
23
24
25
26
27
28
下一页
按字母分类:
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
其他