SQL2008 R2中时,Diagrams的问题Error: ------------------------------ Database diagram support objects cannot be installed because this database does not have...
分类:
数据库 时间:
2014-10-31 18:57:47
阅读次数:
154
Ubuntu 上使用jad,出现上面错误:./jad: error while loading shared libraries: libstdc++-libc6.2-2.so.3: cannot open shared object file: No such file or directory网...
分类:
编程语言 时间:
2014-10-31 15:23:23
阅读次数:
188
错误页面提示could not initialize proxy - no Session控制台org.hibernate.LazyInitializationException: could not initialize proxy - no Session病症:这是一个lazy使用后的Excep...
分类:
Web程序 时间:
2014-10-31 11:31:26
阅读次数:
223
在linux环境编译应用程式或lib的source code时常常会出现如下的错误讯息:代码如下:/usr/bin/ld: cannot find -lxxx这些讯息会随着编译不同类型的source code 而有不同的结果出来如:代码如下:/usr/bin/ld: cannot find -lc/...
分类:
系统相关 时间:
2014-10-31 11:24:50
阅读次数:
186
现象:故障机wget无法下载,测试机无法scp文件到故障机,一直卡,但故障机可以scp文件给测试机在故障机上tcpdump抓包发现故障机和测试机的数据包传输很慢,怀疑故障机MTU问题正常是1200,故障机是15001.查看MTU值#cat/sys/class/net/eth0/mtu2.修改MTU值#echo"1200">/sys/cl..
分类:
其他好文 时间:
2014-10-30 19:27:08
阅读次数:
777
之前一直没有注意一个事情, 关于设置archive归档路径设置的问题。设置数据库为归档模式的命令: 1、首先要切换到mount状态; 2、执行alter system archivelog; 3、查看归档是否启动:archive log list;接着修改归档路径的时候发现报错。报错内容:OR...
分类:
数据库 时间:
2014-10-30 18:49:01
阅读次数:
249
判断手机型号:private boolean isUnusualPhone(){
try {
Class cl = Class.forName("android.os.SystemProperties");
Object invoker = cl.newInstance();
Method m = cl.getMethod("get", new Class[] {...
分类:
移动开发 时间:
2014-10-30 15:23:16
阅读次数:
155
去官网下载 deb包:http://linux.wps.cn/
安装完成后会无法启动程序,控制台会提示错误:
error while loading shared libraries: libgthread-2.0.so.0: cannot open shared object file: No such file or directory
需安装32位库:
sudo apt-get in...
分类:
系统相关 时间:
2014-10-30 11:46:38
阅读次数:
268
asp.net中使用一般处理程序(.ashx)添加session,利用context.session["xxx"] = value的方式把值保存到session;运行的时候会出现该对象尚未引用。解决办法:1,在一般处理程序的类后面添加IRequiresSessionState。例如public cl...
分类:
Web程序 时间:
2014-10-29 23:51:54
阅读次数:
298
有道状压题用了搜索被队友骂还能不能好好训练了,,hdu 3001 经典的状压dp大概题意。。有n个城市 m个道路 成了一个有向图。n#include #include #include #include #include #include #include #define CL(a,b) memse...
分类:
其他好文 时间:
2014-10-29 23:37:09
阅读次数:
273