发布时间:2013-11-07 00:47:37
Oracle使用外键来限制子表中参考的字段值,要求子表中的数据必须在主表中存在。当主表的记录发生变化时导致外键参考唯一约束值发生了变化时,Oracle指定了三种动作:默认值(类似于restrict)、delete cascade和delete set null。(整理自网络)1.创建父表并初始化数据S.........【阅读全文】
发布时间:2013-11-05 12:02:44
测试程序[root@portal01 ~]# cat test.c #include <stdio.h>#include <malloc.h>#include <stdlib.h>#include <string.h>#include <unistd.h>int main (){char *p = NULL;int count = 1;while(1){p = (char *)malloc(1024*1024*10);if(!p){printf("malloc error!\n");return -1; &nb.........【阅读全文】