码迷,mamicode.com
首页 >  
搜索关键字:engine off    ( 10836个结果
添加unique约束
create table t1( id int, num1 int, num2 int, unique up (num1) /unique up (num1,num2) )engine=innodb default charset=utf8; ...
分类:其他好文   时间:2020-06-10 19:32:33    阅读次数:78
创建外键及主键
--创建主键 create table t1( nid int(11) not null auto_increment, pid int(11), num int(11), primary key(nid,pid) ) engine=innodb default charset=utf8; --创建 ...
分类:其他好文   时间:2020-06-10 19:26:24    阅读次数:61
MySQL日志管理
#概述 MySQL提供了丰富的日志 事务日志:transaction log 事务日志的写入类型为“追加”,因此其操作为“顺序IO”;通常也被称为:预写式日志 write ahead logging 事务日志文件: ib_logfile0, ib_logfile1 错误日志 error log 通用 ...
分类:数据库   时间:2020-06-10 18:49:23    阅读次数:63
MySQL 强行kill后启动失败问题:[ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
0、背景 版本信息:MySQL:5.5.47OS:debian7 更新MySQL配置需要重启,restart 显示failed,于是kill -9,然后启动报错:[ERROR] Plugin 'InnoDB' init function returned error.[ERROR] Plugin ' ...
分类:数据库   时间:2020-06-10 17:18:15    阅读次数:73
ubuntu连接蓝牙鼠标
$ sudo -i# bluetoothctl[bluetooth]# power off[bluetooth]# power on[bluetooth]# scan on[bluetooth]# connect XX:XX:XX:XX:XX:XX[Arc Touch Mouse SE]# trus... ...
分类:系统相关   时间:2020-06-10 11:12:31    阅读次数:114
CentOS7+Python3.6+Flask环境MySQL5.7升级MySQL8.0
这次不仅可以乘凉,甚至还能吃瓜了,国内论坛总会给我一种,升级数据库等同于在无人区探索的感觉一样,好多文章里面的代码我怀疑他自己都没有实践过,甚至有5.7和8.0代码混用的文章,我觉得你有问题 升级前需要备份老的数据库,直接upgrade仅能在5.7的小版本下升级,不能升级到5.8(即8.0,噢,这该 ...
分类:数据库   时间:2020-06-09 20:53:52    阅读次数:97
Maven Java Example Application
In this application, we will create a simple adder that computes the sum of two integers. During this process, we will: Generate a Maven project using ...
分类:移动开发   时间:2020-06-09 18:18:18    阅读次数:59
使用jmeter 提供的API实现性能测试(一)
import org.apache.jmeter.JMeter; import org.apache.jmeter.engine.JMeterEngineException; import org.apache.jmeter.engine.StandardJMeterEngine; import o ...
分类:Windows程序   时间:2020-06-09 17:03:18    阅读次数:69
Nignx gzip 文件压缩
Nignx gzip 压缩 在 nginx中默认是压缩的。 将代码拷贝到/etc/nginx/nginx.conf 中 gzip on; # off为关闭 gzip_min_length 1k; #gzip开启阈值,超过1k才会使用gzip gzip_buffers 4 16k; #gzip_htt ...
分类:其他好文   时间:2020-06-09 15:02:21    阅读次数:68
Foundation 滑动导航(Off-Canvas)
侧边栏导航 Off-Canvas 滑动导航现在逐渐在移动页面变得越来越流行了 (点击菜单按钮菜单从左侧滑出): 创建滑动导航 创建滑动导航实例如下: 实例 <!-- 最外层div:页面布局 --><div class="off-canvas-wrap" data-offcanvas> <!-- 内部 ...
分类:其他好文   时间:2020-06-09 14:45:51    阅读次数:66
10836条   上一页 1 ... 60 61 62 63 64 ... 1084 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!