使用独立模式安装Sharepoint Server 2013,允许配置向导到第8步创建示例数据时,出错了!Exception: System.ArgumentException: The SDDL string contains an invalid sid or a sid that cannot...
分类:
其他好文 时间:
2014-06-29 00:28:15
阅读次数:
376
相信不少人遇到过ORA-02429: cannot drop index used for enforcement of unique /primary key 这个错误,对应的中文提示“ORA-02429: 无法删除用于强制唯一/主键的索引”,其实从错误提示信息已经很明显了。下面还是用一个简单的例...
分类:
其他好文 时间:
2014-06-21 14:04:25
阅读次数:
297
一个进程至少有一个线程;同一个进程中的多个线程之间可以"并发"执行! 1 /// 2 /// 非多线程方法 3 /// 4 /// 5 /// 6 private void btnCount_Cl...
分类:
编程语言 时间:
2014-06-21 06:28:33
阅读次数:
202
报这个错,只有一个原因,就是转化的类型不对.接口过父类的子类,在强制转换的时候,一定要用接口父类来定义。代码示例:package com.luoluo.dao.impl;import java.sql.Connection;import java.sql.SQLException;import ja...
分类:
编程语言 时间:
2014-06-20 20:58:03
阅读次数:
900
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
头文件unistd.h是Linux/Unix的系统调用,包含了许多UNIX系统服务函数原型,如open、read、write、_exit、getpid等函数。在linux下能够编译通过的包含此头文件的程序,在VC下编译时出现了如下问题 fatal error C1083: Cannot open i...
分类:
其他好文 时间:
2014-06-18 10:31:54
阅读次数:
244
完整的异常信息如下:org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple bags at org.hibernate.loader.BasicLoader.postInstantia....
分类:
其他好文 时间:
2014-06-18 10:06:31
阅读次数:
198
1 寄存器的分类
通用寄存器:
ax,bx,cx,dx,(ah,al,bh,bl,ch,cl,dh,dl);
sp,bp,si,di
指令寄存器:
ip
标志寄存器:
FR
段寄存器:
cs,ds,ss,es
2 ax,bx,cx,dx
这四个寄存器存放一般数据,你可以在里面存放任何数据,但是其用途会有不同。
AX (Accumulator):累加寄存器,也称之为累...
分类:
其他好文 时间:
2014-06-18 06:04:25
阅读次数:
300
“WARN Please initialize the log4j system properly“的解决办法...
分类:
其他好文 时间:
2014-06-17 22:18:27
阅读次数:
375
一、NMAKE 和 Makefile
1.1 NMAKE - 命令解释器, 根据Makefile文件中定义的脚本,完成项目的编译等操作
1.2 Makefile - 定义编译、连接等脚本语言
1.3 Makefile 文件的使用
1.3.1 基本语法规则
window.exe:window.obj //依赖行
cl.exe window.c /c...