PostgreSQL 9.6部署 参考:https://www.cnblogs.com/shhnwangjian/p/14680679.html https://docs.konghq.com/install/centos/ ...
分类:
其他好文 时间:
2021-04-21 12:50:51
阅读次数:
0
Date date = new Date(((java.sql.Timestamp) message.getSendTime()).getTime()); DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); format. ...
分类:
其他好文 时间:
2021-04-20 15:27:23
阅读次数:
0
第一步、安装环境依赖 安装数据库服务 MySQL: Version >= 5.7 / PostgreSQL / TiDB / NOTHING with SQLite3 由于我们用户量较小,所以我们使用 SQLite3 数据库,因此不没有安装独立的数据库服务。 安装 Git 命令 # apt-get ...
分类:
系统相关 时间:
2021-04-20 15:07:29
阅读次数:
0
最近,我们在一次copy数据库表的时候发生了OOM。经过查询日志和jvm堆dump文件,我们发现是从一个大表里取出数据的时候出现了OOM。 环境: Linux、jdk8、hikari连接池、postgresql数据库 功能:从数据库一个千万级数据的表,批量获取数据,然后插到另外一个表 问题描述:在获 ...
分类:
数据库 时间:
2021-04-20 14:29:36
阅读次数:
0
今天操作数据库一不小心将很重要的数据删除了,找备份也没有,幸好Oracle有闪回的功能。 Flashback table pb_acc_user to timestamp to_timestamp ('2014-0315 09:30:00','yyyy-mm-dd hh24:mi:ss'); 提示O ...
分类:
移动开发 时间:
2021-04-19 14:33:45
阅读次数:
0
用SQLyog生成的mysql表的timestamp字段会自动加上自动更新功能,执行以下语句可取消 其中`answer`是表名字 `create_time`是要更改的timestamp字段名字 ALTER TABLE `answer` CHANGE `create_time` `create_tim ...
分类:
数据库 时间:
2021-04-15 12:18:46
阅读次数:
0
#!/usr/bin/python3 import time import hmac import hashlib import base64 import urllib.parse import os timestamp = str(round(time.time() * 1000)) secre ...
分类:
编程语言 时间:
2021-04-12 12:15:47
阅读次数:
0
postgresql中存储过程语句查看 版权一、查看创建的存储过程语句 \? 查看所有的帮助信息 \d pg_proc 查看pg_proc的结构 select * from pg_proc;//查看所有的存储过程 select procname, prosrc from pg_proc where ...
分类:
其他好文 时间:
2021-04-10 13:09:37
阅读次数:
0
1.postgresql postgres-# ; ERROR: could not open extension control file "/usr/pgsql-10/share/extension/postgis_topology.control": No such file or direc ...
分类:
其他好文 时间:
2021-04-09 13:16:43
阅读次数:
0
https://www.yiibai.com/postgresql/ PostgreSQL教程 https://www.yiibai.com/postgresql/postgresql_c_cpp.html C/C++连接PostgreSQL数据库 https://www.jianshu.com/p ...
分类:
数据库 时间:
2021-04-02 13:25:24
阅读次数:
0