1.关掉oracle server 和 background processes ps -ef |
grep ora 关掉数据库 shutdown immediate 2.关掉监听 lsnrctl status 如果开启的话就执行lsnrctl stop
关掉3.把$ORACLE_HOME下面的文件...
分类:
数据库 时间:
2014-05-17 04:31:36
阅读次数:
469
症状: 1. TCP/IP连接是通的。可以用ping 命令测试。2. 服务器上Oracle
Listener已经启动。 lsnrctl status 查看listener状态 lsnrctl start 启动Oracle listener3.
客户端得到的错误信息通常是:ORA-12170: ...
分类:
数据库 时间:
2014-05-17 00:10:37
阅读次数:
516
Step1:关闭防火墙 service iptables stop[status] service
iptables status chkconfig --list |grep iptables chkconfig iptables offStep2:修改IP
(重启网卡:se...
分类:
其他好文 时间:
2014-05-16 21:22:50
阅读次数:
318
if exists(select * from master.sys.sysprocesses
where spid in (select blocked from
master.sys.sysprocesses))begin---确定进程被锁住的其他资源select spid 进程,STATUS ...
分类:
其他好文 时间:
2014-05-16 06:38:48
阅读次数:
329
使用jquery的ajax出现error:readyState=4,status=500,ajax代码如下:$.ajax({
url : "../toBeFinMisManage/showToBeFinMisNum.action?&_dc=" ...
分类:
Web程序 时间:
2014-05-16 05:46:32
阅读次数:
510
A - 无耻的出题人
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 KB
(Java/Others)
Submit Status
Problem Description
听到X神要参加比赛,只会Fibnacci数的出题人被吓得哭晕在厕所。为了防止X神AK(ALL KI...
分类:
其他好文 时间:
2014-05-13 16:01:26
阅读次数:
234
在学PHP的时候,偶然发现XAMPP窗口Apache的启动出现错误,出现以下的错误提示:
9:52:41 [Apache] Attempting to start Apache app...
9:52:41 [Apache] Status change detected: running
9:52:42 [Apache] Status change detected: stoppe...
分类:
Web程序 时间:
2014-05-13 11:26:38
阅读次数:
431
一、安装1、命令apt-get install
kubuntu-desktop2、下载完成后会弹一个选择登陆默认桌面环境的框装好以后,还可以用下面的命令再调出来dpkg-reconfigure
kdm3、安装中文环境apt-get install language-pack-kde-zh langu...
分类:
其他好文 时间:
2014-05-12 13:47:56
阅读次数:
301
内核要执行一个应用程序,唯一的途径是通过系统调用,exec函数,exec又会调用启动程序,启动程序(通常是汇编语言)以类似下面的方式调用main函数:
void exit(main(argc, argv));
那么在main函数末尾使用exit(0)和使用return 0是等价的。这里有三个正常终止程序的函数:
void exit(int status); // 先执行一些清理操作,...
分类:
其他好文 时间:
2014-05-11 20:11:19
阅读次数:
394