摘要: 1:调试函数的一系列命令,源代码如下main.c #include <stdio.h> int add_range(int low, int high) { int i,sum; for(i=low;i<=high;i++) sum=sum+i; return sum; } int main(void) { int result[100]; result[0]=ad... 阅读全文
posted @ 2012-10-09 14:56 王道健 阅读(2379) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/liang13664759/article/details/1771246 阅读全文
posted @ 2012-09-24 10:21 王道健 阅读(192) 评论(0) 推荐(0) 编辑
摘要: Oracle LISTENER监听文件参数详解及Lsnrctl命令综述# listener.ora Network Configuration File: F:/oracle/product/10.2.0/db_1/network/admin/listener.ora# Generated by Oracle configuration tools.SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (SID_NAME = PLSExtProc) (ORACLE_HOME = D:/oracle/product/10.2.0/db_1) (PROGRAM = 阅读全文
posted @ 2012-09-20 18:17 王道健 阅读(1700) 评论(0) 推荐(0) 编辑
摘要: http://book.51cto.com/art/201106/267410.htm 阅读全文
posted @ 2012-09-20 18:06 王道健 阅读(504) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/gan690416372/article/details/5199857 阅读全文
posted @ 2012-09-20 17:22 王道健 阅读(209) 评论(0) 推荐(0) 编辑
摘要: http://unix-cd.com/vc/www/16/2011-01/17691.html 阅读全文
posted @ 2012-09-20 10:55 王道健 阅读(225) 评论(0) 推荐(0) 编辑
摘要: http://hi.baidu.com/corylus/item/9fcdccf0bed95fdf6325d2f2 阅读全文
posted @ 2012-09-20 09:56 王道健 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Oracle数据库的启动要经历三个阶段:启动实例;装载数据库(Mount the db);打开数据库。1、启动实例startup nomount 非安装启动当启动一个实例时,Oracle会读取一个参数文件,这个文件可以是初始化参数文件(Initialization Parameter File,PFILE),也可以是服务器端参数文件(Server Parameter Files,SPFILE),分配相应大小的一片内存区域叫系统全局区(System Global Area,SGA),然后启动一系列的后台进程(DBWR 数据库写入程序,LGWR 日志写入程序,CKPT 检查点进程,SMON 系统监 阅读全文
posted @ 2012-09-20 09:07 王道健 阅读(2281) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/cuibo1123/article/details/2606895 阅读全文
posted @ 2012-09-17 10:29 王道健 阅读(144) 评论(0) 推荐(0) 编辑
摘要: create or replace procedure deleteBigData as 2 date_length number; 3 temp NUMBER(19, 0); ... 阅读全文
posted @ 2012-09-14 14:23 王道健 阅读(4647) 评论(0) 推荐(0) 编辑