IT猫扑网:您身边最放心的安全下载站! 最新更新|软件分类|软件专题|手机版|论坛转贴|软件发布

您当前所在位置:首页数据库Oracle → Solaris下Oracle的基本操作

Solaris下Oracle的基本操作

时间:2015/6/28来源:IT猫扑网作者:网管联盟我要评论(0)

  1 启动数据库监听

  su -oracle――切换Oracle用户(如果使用su oracle ,则启动时不运行.profile用户环境配置文件)

  $ lsnrctl start――启动监听

  2 启动数据库

  $ sqlplus "/ as sysdba"――用sys用户登陆sqlplus

  SQL*Plus: Release 9.2.0.5.0 - Production on Thu Oct 9 15:06:11 2003

  Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.

  Connected to an idle instance.

  SQL> startup――启动数据库

  ORACLE instance started.

  Total System Global Area 538412728 bytes

  Fixed Size 743096 bytes

  Variable Size 268435456 bytes

  Database Buffers 268435456 bytes

  Redo Buffers 798720 bytes

  Database mounted.

  Database opened.

  SQL> exit――退出sqlplus

  Disconnected from Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production

  With the Partitioning option

  JServer Release 9.2.0.5.0 - Production

  或者

  $dbstart

  3 查看数据库进程

  $ ps -ef|grep ora_――查看oracle进程

  oracle 688322 1 0 15:06:20 - 0:00 ora_smon_bxmis

  oracle 696534 704704 0 15:06:35 pts/4 0:00 grep ora_

  oracle 729224 1 0 15:06:20 - 0:00 ora_dbw0_bxmis

  oracle 745618 1 0 15:06:20 - 0:00 ora_reco_bxmis

  oracle 770216 1 0 15:06:20 - 0:00 ora_ckpt_bxmis

  oracle 778394 1 0 15:06:20 - 0:00 ora_pmon_bxmis

  oracle 843876 1 0 15:06:20 - 0:00 ora_qmn0_bxmis

 

  oracle 901342 1 0 15:06:20 - 0:00 ora_lgwr_bxmis

  oracle 925704 1 0 15:06:20 - 0:00 ora_cjq0_bxmis

  $ ps -ef|grep lsnr――查看oracle监听进程

  4 关闭数据库

  $ sqlplus "/ as sysdba"

  SQL*Plus: Release 9.2.0.5.0 - Production on Thu Oct 9 15:07:04 2003

  Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.

  Connected to:

  Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production

  With the Partitioning option

  JServer Release 9.2.0.5.0 - Production

  SQL> shutdown immediate――关闭数据库

  Database closed.

  Database dismounted.

  ORACLE instance shut down.

  SQL> exit

  Disconnected from Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production

  With the Partitioning option

  JServer Release 9.2.0.5.0 - Production

  或者

  $dbshut

  5 停止数据库监听

  $ lsnrctl stop---停止监听

关键词标签:Solaris,Oracle

相关阅读

文章评论
发表评论

热门文章 Oracle中使用alter table来增加,删除,修改列Oracle中使用alter table来增加,删除,修改列oracle中使用SQL语句修改字段类型-oracle修oracle中使用SQL语句修改字段类型-oracle修使用低权限Oracle数据库账户得到管理员权限使用低权限Oracle数据库账户得到管理员权限Oracle对user的访问控制Oracle对user的访问控制

相关下载

人气排行 ORACLE SQL 判断字符串是否为数字的语句Oracle中使用alter table来增加,删除,修改列的语法ORACLE和SQL语法区别归纳(1)oracle grant 授权语句如何加速Oracle大批量数据处理Oracle删除表的几种方法ORACLE修改IP地址后如何能够使用Oracle 10g创建表空间和用户并指定权限