springboot中集成quzrtz ,持久到mongodb 1.pom引用 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://ww ...
分类:
数据库 时间:
2019-12-11 13:09:47
阅读次数:
319
一、下载企业版MongoDB安装RPM包 https://www.mongodb.com/download-center/enterprise 二、安装MogoDB4.2.2企业版 1、安装依赖包 net-snmp-5.7.2-43.el7.x86_64.rpm net-snmp-agent-lib ...
分类:
数据库 时间:
2019-12-11 13:11:39
阅读次数:
508
表名: think_areas 创建表: CREATE TABLE `think_areas` ( `area_id` smallint(6) unsigned NOT NULL auto_increment COMMENT '地区id', `parent_id` smallint(6) unsig ...
分类:
数据库 时间:
2019-12-11 13:31:03
阅读次数:
160
环境说明: 系统版本:CentOS release 6.8 (Final) MySQL版本:mysql-8.0.18 内存:63G 空间:8T 1 配置本地yum仓库 2 下载安装包:wget https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0. ...
分类:
数据库 时间:
2019-12-11 15:55:39
阅读次数:
321
方法一:select * from user_info where create_date>= '2015-07-01' and create_date < '2015-08-15'; 方法二:select * from user_info where create_datebetween '201 ...
分类:
数据库 时间:
2019-12-11 17:06:37
阅读次数:
482
mongoimport:指定字段的类型,防止将数字型的字符串导入成数值类型 mongoimport -d idpad_zl -c trs_action_dzwl_zm --type csv --columnsHaveTypes --fields "_id.string(),netbar_wacode ...
分类:
数据库 时间:
2019-12-11 17:09:22
阅读次数:
298
[TOC] MySQL存储引擎 什么是存储引擎? 数据库存储引擎是数据库底层软件组件,数据库管理系统使用数据引擎进行创建、查询、更新和删除数据操作。 用于根据不同的机制处理不同的数据 提示: 事务型数据库的首选引擎,支持事务安全表(ACID),行锁定 和 外键。( 事务主要用于处理操作量大,复杂度高 ...
分类:
数据库 时间:
2019-12-11 17:13:02
阅读次数:
122
一、体系结构 MySQL C/S模型 Server : mysqld Client : socket:仅本地连接使用 tcp/ip:应用连接使用(远程和本地) 实例介绍 实例=mysqld+master thread + N thread + 内存区域 mysqld程序运行原理 mysqld程序结构 ...
分类:
数据库 时间:
2019-12-11 17:14:04
阅读次数:
97
首先,我们检测一下系统中是否已安装mysql的相关服务 命令: rpm -qa | grep mysql,无输出则证明未安装 然后我们使用yum检测查找系统自带的mysql安装文件。 CentOS7的yum源中未找到mysql服务。所以,我们要先下载mysql的repo源。 下载命令:wget ht ...
分类:
数据库 时间:
2019-12-11 17:17:19
阅读次数:
100
进行分页查询时 使用了rownum关键字导致查询时查询不出数据 ,修改 给rownum字段取个别名,规避oracle关键字 select * from (select rownum,row_.* from (select vil.*, c.audit_title, nvl(vil.update_ti ...
分类:
数据库 时间:
2019-12-11 17:19:56
阅读次数:
111
使用方法 ...
分类:
数据库 时间:
2019-12-11 17:20:13
阅读次数:
195
前端缓存有cookie,localStorage,sessionStorage,webSQL,indexDB; cookie:有缺点 localStorage:功能单一 sessionStorage:会话级 webSQL:仅谷歌支持(标准查询语句) 重点 indexDB IndexedDB 就是浏览 ...
分类:
数据库 时间:
2019-12-11 17:20:32
阅读次数:
233
这是一个坑,并且是有毒的坑。 一不小心我就掉进了这个坑里面,费了好大的力气这才从坑里面爬出来。 话不多说,开始吹BB啦。 一.简单说说遇到的问题: 连表查询,一对多。 出现 int, smalldatetime等非string类型的字段为null。 操作如下: 1.sql语句查询,结果完全准确。 2 ...
分类:
数据库 时间:
2019-12-11 17:22:04
阅读次数:
181
问题描述:oracle服务器硬盘磁盘空间满了,没有空间写入数据; 解决思路: a、服务器是虚拟机还是实体机? 虚拟机,->物理机上有空间直接给它扩容,再给数据库的相关表空间添加文件就可; 实体机,->确定是否还有oracle收缩磁盘硬盘插槽,能新增物理硬盘,买+接入; b、删数据以及降低高水位; 通 ...
分类:
数据库 时间:
2019-12-11 17:24:01
阅读次数:
191
```sql mysql 命令 SHOW DATABASES; 查看目前系统中存在的数据库 use database_name; 切换数据库 SHOW TABLES; 显示当前数据库下面的所有可用的表 SELECT FROM table_name; 显示该表中的所有数据 DESC table_nam ...
分类:
数据库 时间:
2019-12-11 17:28:29
阅读次数:
105
"支持“xxx”上下文的模型已在数据库创建后发生更改。请考虑使用 Code First 迁移更新数据库”解决办法 ...
分类:
数据库 时间:
2019-12-11 17:29:05
阅读次数:
205
初学者在maven spring boot web项目中使用thymeleaf 模板,经常会遇到 “template might not exist or might not be accessible by any of the configured Template Resolvers”这个问题 ...
分类:
数据库 时间:
2019-12-11 17:30:25
阅读次数:
1401
【问题】image jmdiservice:1206 could not be accessed on a registry to record its digest. Each node will access jmdiservice:1206 independently, possibly le ...
分类:
数据库 时间:
2019-12-11 17:34:55
阅读次数:
634
show status like '%max_connections%'; ##mysql最大连接数 set global max_connections=1000 ##重新设置 show variables like '%max_connections%'; ##查询数据库当前设置的最大连接数 s ...
分类:
数据库 时间:
2019-12-11 17:36:48
阅读次数:
95
一、导出 1.1 导出表结构及数据 mysqldump -uroot -p --set-gtid-purged=OFF database table1 table2 > mysqldump.sql 1.2 只导出表结构 mysqldump -uroot -p --set-gtid-purged=OF ...
分类:
数据库 时间:
2019-12-11 17:38:45
阅读次数:
119