错误经过:在读取Excel时,出现外部表不是预期的格式错误原因1: 由于Excel 97-2003的连接格式与Excel 2010 的 不同造成。以下是从网上摘抄原文Excel “External table is not in the expected format.” .Question:I'm...
分类:
其他好文 时间:
2014-06-18 21:27:00
阅读次数:
410
2014年6月16日 10:48:51出错的部分提示摘录:#1452 - Cannot add or update a child row: a foreign key constraint failsresult 2 when explaining filename '#sql-3d5_20436...
分类:
数据库 时间:
2014-06-18 21:01:47
阅读次数:
332
通过服务器中转访问其他服务器:su - ptkfcz输入passwordssh 用户@转接服务IP使用locate命令定位mongo位置进入mongo的bin目录下:输入命令进去mongoDB:./mongo IP:端口show dbs,use db,show tables
分类:
数据库 时间:
2014-06-18 20:18:05
阅读次数:
248
iOS 设备按照尺寸分成Phone/Touch和Pad开发,各自分辨率如下:1 尺寸和分辨率iPhone/iPod Touch设备名分辨率屏幕类型iPhone 1/3G/3GS,iTouch 1/2/3320x480普通屏iPhone 4/4S,iTouch 4640x9603:2 Retina屏i...
分类:
移动开发 时间:
2014-06-18 18:47:03
阅读次数:
337
table中td会随着里面的内容伸缩,设置其width样式并没有效果。这个时候需要下面的CSS可以实现。首先是设置table.table {table-layout:fixed;}其次是td.table td { overflow: hidden; white-space: nowra...
分类:
其他好文 时间:
2014-06-18 18:06:34
阅读次数:
221
标准SQL修改字段类型和长度语句:ALTER TABLE tableName modify column columnName 类型;例如Mysql的修改字段类型语句:alter table test modify column name varchar(255);Oracle修改字段类型和长度语句...
分类:
数据库 时间:
2014-06-17 00:05:57
阅读次数:
369
可以增加和删除行的table(可以编辑表格中内容)...
分类:
其他好文 时间:
2014-06-16 22:11:55
阅读次数:
181
DECLARE @TABLE_NAME VARCHAR(200) SET @TABLE_NAME = 'myFunction' --表名
DECLARE @TABLE_CONDITION VARCHAR(200) SET @TABLE_CONDITION = 'where Application=''0303'' AND FunctionType=''功能''' --条件
DECL...
分类:
数据库 时间:
2014-06-16 19:38:05
阅读次数:
267
本来是有用@Entity和@Table注解映射,之后发现,是因为@Table导入的包导错了。
分类:
移动开发 时间:
2014-06-16 18:34:19
阅读次数:
194
declare @f int =5select floor(@f*0.22)-- 直接可显示结果create table demo(id int identity(1,1),id1 int)select * from demoinsert into demo(id1)select 2 union a...
分类:
其他好文 时间:
2014-06-16 13:30:21
阅读次数:
168