码迷,mamicode.com
首页 >  
搜索关键字:drop profile    ( 11337个结果
mysqldump不锁表备份single-transaction
[root@es02-010007081131 dumpbackup]# more /home/script/backup/mysql_dumpbackup.sh #!/bin/bash . /etc/profile . ~/.bash_profile backup_date=`date "+%Y% ...
分类:数据库   时间:2021-06-24 18:11:54    阅读次数:0
Android性能优化使用自带的Profiler功能分析traceView文件
使用Android studio自带的profiler功能生成trace文件 分析profiler生成trace文件 有时需要分析app冷启动时间耗时情况,单独使用profiler功能生成trace文件就有点不好操作,可以借助代码生成trace文件,然后再通过profiler功能进行分析 //开始t ...
分类:移动开发   时间:2021-06-24 17:49:12    阅读次数:0
oracle基础安全配置
1、oracle中用户密码复杂度配置 1)查看参数 select limit from dba_profiles where resource_name='PASSWORD_VERIFY_FUNCTION' and profile in (select profile from dba_users ...
分类:数据库   时间:2021-06-24 17:35:08    阅读次数:0
使用Spring Data JPA 访问 Mysql 数据库-配置项
jpa操作数据库 注意:数据库采用的是本机数据库,下面是建表语句及初始化数据: SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- -- Table structure for user -- DROP TABLE IF EXISTS `user`; ...
分类:数据库   时间:2021-06-24 17:30:09    阅读次数:0
删除自增主键并新增主键
alter table student_info modify id int(3); -- 先删除自增约束 alter table student_info drop primary key; -- 再删除主键约束 alter table student_info drop id; -- 再删除该字 ...
分类:其他好文   时间:2021-06-22 17:54:17    阅读次数:0
日志文件丢失
日志文件丢失有以下几种可能性 1:日志正在记录的时候,手动修改了/var/log/messages 2: 存储设备异常,系统无法将日志写入到/var/log/messages中 3:突然有大量日志写入,并提示 begin to drop messages due to rate-limiting 1 ...
分类:其他好文   时间:2021-06-21 20:43:49    阅读次数:0
Linux 平台安装 Nginx 1.20
Linux 平台安装 Nginx 1.20 该博客中使?的系统为 CentOS 7 Linux 发?版 系统版本详情: Linux centos7-shanghai 3.10.0-1160.25.1.el7.x86_64 #1 SMP Wed Apr 28 21:49:45 UTC 2021 x86 ...
分类:系统相关   时间:2021-06-21 19:54:00    阅读次数:0
设置MySQL密码
简单设置环境变量,以及密码 1.把mysql命令加入环境变量 [root@master01 ~]# vim /etc/profile.d/mysql.sh #!/bin/bash export MYSQL=/application/mysql export PATH=$PATH:$MYSQL/bin ...
分类:数据库   时间:2021-06-20 18:49:27    阅读次数:0
SQLAlchemy操作
1 新增 user = User(mobile='15612345678', name='itcast') db.session.add(user) db.session.commit() profile = Profile(id=user.id) db.session.add(profile) d ...
分类:数据库   时间:2021-06-20 18:48:46    阅读次数:0
Kafka集群安装部署
1 集群安装部署 1、下载安装包(http://kafka.apache.org) https://archive.apache.org/dist/kafka/1.1.0/kafka_2.11-1.1.0.tgz kafka_2.11-1.1.0.tgz 2、规划安装目录 /bigdata/inst ...
分类:其他好文   时间:2021-06-20 18:39:18    阅读次数:0
11337条   上一页 1 2 3 4 ... 1134 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!