一、问题 近期在使用git时遇到一个问题,就是在git上传文件时,将一个100兆的大文件添加到了git,并执行了push操作,这时在上传完毕后,会提示这个错误 Large files detected
see http:git.io/iEPt8g for more information
this ...
分类:
其他好文 时间:
2015-01-13 19:47:33
阅读次数:
612
MYSQL查看和新增表分区1、查看表分区SELECT partition_name part, partition_expression expr, partition_description descr, FROM_DAYS(partition_description) lessthan_sendtime, table_rows FROM INFORMATION_SCHEMA...
分类:
数据库 时间:
2015-01-12 14:42:26
阅读次数:
224
1.根据字段名,查找相关表--INFORMATION_SCHEMA.COLUMNSSELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME='字段名' AND TABLE_CATALOG='DbName'2.根据存储过程名查找其源码,输出格...
分类:
数据库 时间:
2015-01-12 14:34:44
阅读次数:
189
如今我们介绍连接 (Join) 的概念。要了解连接,我们须要用到很多我们之前已介绍过的指令。我们先如果我们有下面的两个表格,Store_Information表格Store_NameSalesTxn_DateLos Angeles150005-Jan-1999San Diego25007-Jan-1...
分类:
数据库 时间:
2015-01-12 11:25:18
阅读次数:
171
2.Representing and Manipulating Information本章从二进制、字长、字节序,一直讲到布尔代数、位运算,最后无符号、有符号整数、浮点数的表示和运算。诚然有些地方的数学证明有些枯燥,但总体上看,本章还是干货十足的!2.1 Decimal vs. Binary Notation我们习惯十进制只是因为我们有十根手指头(?),所以会对二进制感到不习惯。但是二值信号(tw...
分类:
移动开发 时间:
2015-01-11 23:05:42
阅读次数:
561
Auto packing the repository for optimum performance. You may alsorun "git gc" manually. See "git help gc" for more information.Counting objects: 9231,...
分类:
其他好文 时间:
2015-01-10 16:21:28
阅读次数:
1394
会议:Information Processing in Medical Imaging,IPMIIPMI2013International Conference on Medical Image Computing and Computer Assisted Intervention,MICCAI...
分类:
其他好文 时间:
2015-01-10 06:33:34
阅读次数:
166
1:查询数据库dbName有多少张表
select count(*) from information_schema.tables where table_schema='dbName’;
2:根据某个字段合并表
select id,name,sum(operate) from test group by name;
执行结果:...
分类:
数据库 时间:
2015-01-10 01:26:07
阅读次数:
185