【程序编程相关:如何知道Apache的连接数目】
【推荐阅读:为什么php输出不了表单变量?帮忙看看.】 【扩展信息:请各位大虾米指点:客户端如何通过WEB方】系统环境: 1.操作系统:windows 2000 server,机器内存128m 2.数据库: oracle 8i r2 (8.1.6) for nt 企业版 3.安装路径:c:\oracle 实现步骤: 1.用exp工具导出 2.导入时使用show=y选项.log选项 3.查看.编辑日志文件 具体实例: 1.调出sql*plus conn system/manager grant connect,resource to a identified by a; grant connect,resource to b identified by b; conn a/a create table a(a number); insert into a values(1); insert into a values(2); insert into a values(3); create table b(a number,b varchar2(10)); insert into b values(1,1111); insert into b values(2,2222); insert into b values(3,3333); commit; 2.打开一个dos窗口.先执行导出 e:\>exp a/a file=a.dmp log=loga.txt ... 下一页