1 SET ANSI_NULLS ON 2 GO 3 SET QUOTED_IDENTIFIER ON 4 GO 5 -- ============================================= 6 -- Author: 7 -- Create date: 8...
分类:
数据库 时间:
2014-07-24 22:16:02
阅读次数:
258
E/AndroidRuntime(7200): Uncaught handler: thread Thread-8 exiting due to uncaught exceptionE/AndroidRuntime( 7200): java.lang.RuntimeException: Can't ...
分类:
移动开发 时间:
2014-07-24 22:12:02
阅读次数:
286
MySQL 支持批处理的模式运行一批SQL语句,以下的样例就是实验MySQL怎样在windows下批处理运行SQL语句。create table test(id int,name varchar(20));insert into test values(1,'watson');batchfile.t...
分类:
数据库 时间:
2014-07-24 22:01:53
阅读次数:
250
CREATE TABLE Hotel ( Name varchar(255), CardNo varchar(255), Descriot varchar(255), CtfTp varchar(255), CtfId varchar(255), Gender varchar(255), Birth...
分类:
其他好文 时间:
2014-07-24 21:51:42
阅读次数:
443
源自:http://www.cnblogs.com/kevinGaoblog/archive/2012/07/05/2577410.html--查询分析器中执行:--建表table1,table2:create table table1(id int,name varchar(10))create ...
分类:
数据库 时间:
2014-07-24 21:38:12
阅读次数:
240
当某个进程调用epoll_create方法时,linux内核会创建一个eventpoll结构体,这个结构体中有两个成员与epoll的使用方式密切相关。struct eventpoll{ struct rb_root rbr;//红黑树的根结点,这棵树中存储着所有添加到epoll中的事件,也就是这个....
分类:
其他好文 时间:
2014-07-24 21:22:56
阅读次数:
171
magento 安装插件失败 网站打不开,只有connect能打开,显示错误 Service Temporarily UnavailableThe server is temporarily unable to service your request due to maintenance down...
分类:
Web程序 时间:
2014-07-24 21:17:43
阅读次数:
269
环境:宿主机ubuntu-server12.04.4安装vnc4server远程机ubuntu-destop12.04.4安装xvnc4viewer首先在ubuntu-server创建个create_win2003.shsudovirt-install--namebzwin2003\--ram2048\--vcpus=1\--diskpath=/home/bzdev/WinServer2003/win2003.img,size=50\--cdrom/home/bzdev/..
MySQL数据目录/data/mysql所在的上层目录/data磁盘空间不足导致MySQL启动失败,所以清理了/data目录下除了mysql子目录外的其他无用目录。重启发现还是失败。检查错误日志。看到如下错误:
/usr/local/mysql/bin/mysqld: Can't create/write to file '/data/tmp/ibbLmEoD' (Errcode: 13 - P...
分类:
数据库 时间:
2014-07-24 17:41:56
阅读次数:
272
mysql 插入语句什么时候用单引号,什么时候不用?1、先创建一个表create table user(username varchar(255),age int,marry boolean,birthday date);【注意,最后一个括号前面不能有逗号,否则出错】2、插入语句insert int...
分类:
数据库 时间:
2014-07-24 17:33:25
阅读次数:
281