linux下oracle 数据库的启动和关闭
QQ:1156316388 Tel:010-51527259
一、启动
三个命令:
1、sqlplux /nolog
2、connect /as sysdba
3、startup
二、关闭
1、shutdown immediate;
[oracle@zhao ~]$ sqlplus /nolog
SQL*Plus: Release 9.2.0.4.0 - Production on Sun Nov 1 15:08:40 2009
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
SQL> connect /as sysdba
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area 236000356 bytes
Fixed Size 451684 bytes
Variable Size 201326592 bytes
Database Buffers 33554432 bytes
Redo Buffers 667648 bytes
Database mounted.
Database opened.
SQL>
惊叹号在 SQL> ! 回车可以退出 sql命令行
查看oracle数据库运行启动的进程
SQL> !
[oracle@zhao ~]$ ps -ef | grep oracle
root 4268 4235 0 15:08 pts/0 00:00:00 su - oracle
oracle 4269 4268 0 15:08 pts/0 00:00:00 -bash
oracle 4299 4269 0 15:08 pts/0 00:00:00 sqlplus
oracle 4302 1 0 15:09 ? 00:00:00 ora_pmon_lx92
oracle 4304 1 0 15:09 ? 00:00:00 ora_dbw0_lx92
oracle 4306 1 0 15:09 ? 00:00:00 ora_lgwr_lx92
oracle 4308 1 0 1
相关文档:
一:前言
最近在研究android的sensor driver,主要是E-compass,其中用到了Linux input子系统.在网上也看了很多这方面的资料,感觉还是这篇分析的比较细致透彻,因此转载一下以便自己学习,同时和大家分享!
(这篇博客主要是以键盘驱动为例的,不过讲解的是Linux Input Subsystem,可以仔细的研究一下!)
键盘驱动将检 ......
本书全面介绍了Ubuntu Linux的相关知识,内容详实,论述清晰。主要内容包括Ubuntu介绍、文件系统管理、进程管理、压缩与查询系统、Shell应用、TCP/IP基础、网络管理、网络硬盘以及加密安全通信等内容。
本书是一本理论与实践并重的书籍,可作为专业人员的参考书籍,也适合于对Ubuntu ......
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
static char *runStatusFile = "/syscfg/etc/runStatusFile";
FILE *pFile = NUL ......
在linux系统上同样可以配置串口,使用串口来与其他设备进行通信。
在配置串口前,我们有取得linux系统的root权限,这个很重要。否则无法完成下面步骤。
1.切换到root用户.
[root@localhost ~]#su root
2. 查找有效的串设备.
[root@localhost ~]#cat /proc/devices
Character devices:
1 mem
4 /dev/v ......