在windows下查看oracle的后台进程

简介: 在linux环境下可以使用命令直接查oracle的进程,在windows下可以使用sql语句查看,不过没有linux的信息详细。。。 SQL> select program,status from v$session where type='BACKGROUN...

在linux环境下可以使用命令直接查oracle的进程,在windows下可以使用sql语句查看,不过没有linux的信息详细。。。

SQL> select program,status from v$session where type='BACKGROUND';
PROGRAM                                                          STATUS        
---------------------------------------------------------------- --------      
ORACLE.EXE (CJQ0)                                                ACTIVE        
ORACLE.EXE (q001)                                                ACTIVE        
ORACLE.EXE (q000)                                                ACTIVE        
ORACLE.EXE (QMNC)                                                ACTIVE        
ORACLE.EXE (W000)                                                ACTIVE        
ORACLE.EXE (SMCO)                                                ACTIVE        
ORACLE.EXE (FBDA)                                                ACTIVE        
ORACLE.EXE (ARC4)                                                ACTIVE        
ORACLE.EXE (ARC3)                                                ACTIVE        
ORACLE.EXE (ARC2)                                                ACTIVE        
ORACLE.EXE (ARC1)                                                ACTIVE        
ORACLE.EXE (ARC0)                                                ACTIVE        
ORACLE.EXE (MMNL)                                                ACTIVE        
ORACLE.EXE (MMON)                                                ACTIVE        
ORACLE.EXE (RECO)                                                ACTIVE        
ORACLE.EXE (SMON)                                                ACTIVE        
ORACLE.EXE (CKPT)                                                ACTIVE        
ORACLE.EXE (LGWR)                                                ACTIVE        
ORACLE.EXE (DBW0)                                                ACTIVE        
ORACLE.EXE (MMAN)                                                ACTIVE        
ORACLE.EXE (DIA0)                                                ACTIVE        
ORACLE.EXE (PSP0)                                                ACTIVE             ORACLE.EXE (DBRM)                                                ACTIVE        
ORACLE.EXE (DIAG)                                                ACTIVE        
ORACLE.EXE (VKTM)                                                ACTIVE        
ORACLE.EXE (PMON)                                                ACTIVE        
已选择26行。

附 linux环境下查看进程的命令:

查看Oracle db进程 ps –ef|grep ora_
查看Net8 Listener进程1 ps –ef|grep lsnr
查看Net8 Listener of the APPS RPC进程 ps –ef|grep lsnr
查看Report serve进程 ps –ef|grep rwmts60
查看Concurrent Manager进程 ps –ef|grep FND|grep oracle
查看Apache进程 ps –ef|grep Apache|grep oracle
查看Apache Servle进程 ps –ef|grep java
查看Forms Metric Client进程 ps –ef|grep d2lc60
查看Forms Metric Server进程 ps –ef|grep d2ls60
查看Forms Serverr进程 ps –ef|grep
f60webmx

参考资料:

http://zhulch.itpub.net/post/17395/462068

目录
相关文章
|
26天前
|
Java Windows
【Azure Developer】Windows中通过pslist命令查看到Java进程和线程信息,但为什么和代码中打印出来的进程号不一致呢?
【Azure Developer】Windows中通过pslist命令查看到Java进程和线程信息,但为什么和代码中打印出来的进程号不一致呢?
|
1月前
|
Windows
Windows中如何查看被占用的端口、杀掉对应的进程
这篇文章介绍了在Windows系统中如何查看被占用的端口号以及如何杀掉占用端口的进程,包括使用命令提示符的`netstat -ano | findstr 端口号`命令查找进程PID,然后通过任务管理器或`taskkill /PID PID号`命令来结束进程。
Windows中如何查看被占用的端口、杀掉对应的进程
|
1月前
|
JavaScript Windows
NodeJs——如何获取Windows电脑指定应用进程信息
NodeJs——如何获取Windows电脑指定应用进程信息
56 0
|
1月前
|
Linux Windows
Windows查找监听端口对应的进程及其路径
Windows查找监听端口对应的进程及其路径
|
3月前
|
Python Windows
在 Windows 平台下打包 Python 多进程代码为 exe 文件的问题及解决方案
在使用 Python 进行多进程编程时,在 Windows 平台下可能会出现将代码打包为 exe 文件后无法正常运行的问题。这个问题主要是由于在 Windows 下创建新的进程需要复制父进程的内存空间,而 Python 多进程机制需要先完成父进程的初始化阶段后才能启动子进程,所以在这个过程中可能会出现错误。此外,由于没有显式导入 Python 解释器,也会导致 Python 解释器无法正常工作。为了解决这个问题,我们可以使用函数。
55 5
|
3月前
|
缓存 数据安全/隐私保护 虚拟化
windows端口被占用,无法通过netstat找到进程,占用的端口又不能修改,该怎么办?
项目运行时服务器8080端口被占用,常规`netstat`命令找不到占用进程。解决方法包括:1) 强制关机重启释放端口;2) 使用`netstat -anobq`或Windows 10的`Get-NetTCPConnection` PowerShell命令查找BOUND状态的进程;3) 调整Windows动态端口范围,避免冲突。注意,强制关机可能影响数据安全。
587 2
|
3月前
|
存储 数据安全/隐私保护 Windows
逆向学习Windows篇:进程句柄操作详解
逆向学习Windows篇:进程句柄操作详解
73 0
|
Linux Windows
windows系统如何后台执行程序
http://zhumeng8337797.blog.163.com/blog/static/100768914201232543010544/ windows上面查看进程,使用ta...
681 0
|
15天前
|
网络安全 虚拟化 Windows
windows 11安装openSSH server 遇到的"kex_exchange_identification: read: Connection reset"问题
windows 11安装openSSH server 遇到的"kex_exchange_identification: read: Connection reset"问题
|
25天前
|
PHP Windows
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误

推荐镜像

更多