报错如图1.先检查当前windows账户用户名是否为全英文,没有就新建一个,大多数用户败在这一步,而官方也没有解释如何新建:开始-->控制面板-->用户账户和家庭安全-->用户账户-->管理其他账户-->创建一个新账户账户名填:oracledb,类型选管理员点创建账户然后注销或重启,再用oracle...
分类:
数据库 时间:
2015-03-21 15:32:09
阅读次数:
167
这里 错误的原因是因为没有加上以下代码:if(cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentif...
分类:
其他好文 时间:
2015-03-20 21:52:44
阅读次数:
120
(1)Failure是指测试失败(2)Error是指测试程序本身出错
分类:
其他好文 时间:
2015-03-20 21:39:22
阅读次数:
119
/*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m maxsize ...
分类:
其他好文 时间:
2015-03-20 16:00:58
阅读次数:
161
最近在使用yum方式安装perl-DBD-MySQL时碰到了Temporary failure in name resolution,Trying other mirror。即命名解析失败,尝试使用其它镜像。由于本机为最近安装的新服务器,下面是这个问题的现象描述及处理过程。1、故障现象###当前环境[root@GZDB ~]# cat /etc/issueCentOS release 5.11...
分类:
其他好文 时间:
2015-03-18 09:01:35
阅读次数:
282
问题现象com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failureThe last packet sent successfully to the server was 0 millisec...
分类:
数据库 时间:
2015-03-18 08:56:36
阅读次数:
376
这个bug很是让人tou疼,在写接口的时候,我是把接口直接冲文档复制的,就出现了这个bug.后来网上说,可能是接口带有中文,但是接口根本没有中文,大概是因为冲文档复制的原因.后来自己手写了一遍接口,就对了.如果在你的接口里面确实有中文,那么你的程序一定会崩溃,那怎么办呢?下面是解决方法.需要处理ur...
分类:
Web程序 时间:
2015-03-17 11:48:44
阅读次数:
149
oracle创建用户、授予权限及删除用户创建用户oracle对表空间 USERS 无权限alter user 用户名 quota unlimited on users;//创建临时表空间create temporary tablespace test_temptempfile 'E:/oracle/...
分类:
数据库 时间:
2015-03-17 00:31:02
阅读次数:
177
回顾一下生产者消费者模型。 #include #include #include #include #include #include #include #define ERR_EXIT(m) \ do { \ perror(m);\ exit(EXIT_FAILURE);\ }while(0)
#...
分类:
系统相关 时间:
2015-03-16 16:15:52
阅读次数:
189
第一步:创建临时表空间CREATE TEMPORARY TABLESPACE DB_TEMP TEMPFILE 'D:\oracle\product\10.2.0\oradata1\orcl\DB_TEMP.DBF' SIZE 32M AUTOEXTEND ON NEXT 32M MAxSIZE U...
分类:
数据库 时间:
2015-03-14 13:48:23
阅读次数:
155