mysql数据导出的方法有很多,例如mysqldump, mysql -e 'sql' > file, 这些都可以很方便的导出数据,可是在使用普通用户导出数据的时候,出现了问题。
1
select * into
outfile "file_path" from my_table
上面的语句也是mysql导出数据的一种方式,在...
分类:
数据库 时间:
2014-11-12 17:53:06
阅读次数:
235
String mBigImage = URLEncoder.encode(mImageUrl.replace("*", ""), "UTF-8");
String mBigImagePath = LoveHealthConstant.FILE_PATH + "images/" + mBigImage;
File getImage = new File(mBigImagePath);
...
分类:
其他好文 时间:
2014-11-06 17:30:26
阅读次数:
212
修改 NetworkController.java 的 void refreshViews(int slotId)
(File Path: alps/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/NetworkController.java)
1. 找到
} else ...
分类:
移动开发 时间:
2014-11-05 17:09:41
阅读次数:
207
1. 从 container 到 主机(host)使用 docker cp 命令 docker cp :/file/path/within/container /host/path/target2. 从 主机(host) 到 containerGet container name or short....
分类:
其他好文 时间:
2014-10-29 19:14:24
阅读次数:
204
1、robocopy : 复制文件和目录树的高级使用程序(windows下) 2、【perl】File::Path mkpath 、rmtree分别为创建目录和删除目录,perl自带mkdir和rmdir,但是mkdir只能穿件一级目录mkpath可以一次创建多级;rmdir...
分类:
其他好文 时间:
2014-10-29 13:15:07
阅读次数:
228
方法: mysqldump -uuser_name -p db_name table_nameList >save_file_path 例子: 备份分studio数据库的student 表 mysqldump -uroot -p studio student>E:\1.tx...
分类:
数据库 时间:
2014-10-21 11:57:00
阅读次数:
222
解决方法: mysqlbinlog bin_log_file_path_and_name | mysql -uroot -p 如: mysqlbinlog E:\DB\mysql_log\mysql_bin_log.000001 | mysql -uroot -p-----...
分类:
数据库 时间:
2014-10-19 22:48:46
阅读次数:
257
Hadoop日志分析系统启动脚本
#!/bin/bash
#Flume日志数据的根目录
root_path=/flume
#Mapreduce处理后的数据目录
process_path=/process
#hive分区时间
partition=`date "+%Y-%m-%d"`
#获取前一小时的时间:/YYYY-MM-DD/HH
file_path=`date -d "1 hour ...
分类:
其他好文 时间:
2014-10-16 19:41:13
阅读次数:
202
前台页面: 引入js和css <script type="text/javascript" src="${STATIC_FILE_PATH}/js/jquery/jquery-1.10.js${STATIC_FILE_VERSION}"></script> <link type="text/css" rel="stylesheet" href="${STATIC_FILE_...
分类:
编程语言 时间:
2014-10-15 11:17:30
阅读次数:
289
一、写EXCEL String path="D:/zhangxinxin/files/excels/test.xls"; // 打开文件 File file = new File(path); if (file.exists()) ...
分类:
编程语言 时间:
2014-10-13 13:57:09
阅读次数:
200