转载于:http://blog.csdn.net/wuzhilon88/article/details/17616635第一种方法:可能是硬盘满了,清理下垃圾文件。第二种:查看下数据库运行状态/etc/init.d/mysql status提示ERROR! MySQL is running but ...
分类:
数据库 时间:
2015-02-04 10:50:16
阅读次数:
208
上网查了一下:看到了此人的http://blog.csdn.net/z297470279z/article/details/7450752如下:在root 下运行 yum install libgnomeui-devel需要联网下载20/30M的包,里面包括这个过程大概几分钟吧!做个记录
分类:
其他好文 时间:
2015-02-04 00:33:36
阅读次数:
469
Search Insert PositionGiven a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if ...
分类:
其他好文 时间:
2015-02-03 22:42:04
阅读次数:
152
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:
其他好文 时间:
2015-02-03 20:58:39
阅读次数:
133
先给出几种实现方式:
方式一:
char* strcpy(char* des,const char* source)
{
char* r=des;
while((*(des++)=*(source++))!='\0');
return r;
}
方式二:
char * strcpy(char * strDest,const char * strSrc)
{
if ((NULL==strDest) || (NULL==strSrc)) //[1]
throw "Invalid argument...
分类:
其他好文 时间:
2015-02-03 17:20:57
阅读次数:
158
今日编译apache时出错:
#./configure --prefix……检查编辑环境时出现:
checking for APR... no
configure: error: APR not found . Please read the documentation
解决办法:
1.下载所需软件包:
wget http://archive.apache.org/d...
分类:
Web程序 时间:
2015-02-03 17:10:11
阅读次数:
152
详细错误:HTTP 错误 404.2 - Not Found. 由于 Web 服务器上的“ISAPI 和 CGI 限制”列表设置,无法提供您请求的页面.出现环境:win7 + IIS7.0解决办法:IIS的根节点->右侧“ISAPI和CGI限制”->把禁止的DotNet版本项设置为允许,即可~
本题要求从输入的N个整数中查找给定的X。如果找到,输出X的位置(从0开始数);如果没有找到,输出“Not Found”。输入格式:输入在第1行中给出2个正整数N( 2 #include 3 #include 4 #include 5 #include 6 7 using namespace...
分类:
编程语言 时间:
2015-02-02 19:34:15
阅读次数:
153
--win8.1 为了刷机强制安装驱动. 提示异常.Data is invalid . 数据不可用.解决办法: Device Install Service 服务关闭未启用. 打开即可. net start DeviceInstall.附: 其他相关办法: 1)Ran sfc /scannow (....
分类:
其他好文 时间:
2015-02-02 17:35:12
阅读次数:
136
源端:Oracle 11.1.0.7
目标端:Oracle 11.2.0.4
最近做的一个数据迁移的CASE中遇到的问题,一个VIEW在完成数据迁移后由VALID的状态变为了INVALID。
从源库中使用get_ddl拿到的该VIEW创建语句如下:
CREATE OR REPLACE FORCE VIEW "APPS"."IGW_BUDGET_CATEGORY_V1" ("PROPOSAL...
分类:
数据库 时间:
2015-02-02 15:59:54
阅读次数:
236