欢迎来到天天文库
浏览记录
ID:6379788
大小:61.50 KB
页数:9页
时间:2018-01-12
《oracle for sun solaris 维护手册》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、ORACLEFORSUNSOLARIS维护手册来源:不详ORACLEFORSUNSOLARIS维护手册ORACLE的维护工作主要有打开和关闭数据库;用exp、imp命令做逻辑备份;用tar命令做物理备份;ORACLE数据库使用一段时间后的空间扩张和针对具体的工作增加临时或回滚表空间,取消新增的临时或回滚表空间;增加oracle的用户,给用户授权等。以下按顺序详细介绍这些维护操作。一、打开和关闭数据库1、打开数据库①、#su-oracle②、%dbstart等待十几秒左右,当看到oracleinstancesstarted,databasemounted,databaseopened
2、的时候,oracle数据库打开成功第二步的操作由如下命令组成%svrmgrl唤醒SVRMGR状态SVRMGR>connectinternal连接内核SVRMGR>startup打开数据库SVRMGR>exit%备注:打开数据库startup可带三个参数,分别是SVRMGR>startupnomount仅启动instancesSVRMGR>startupmount启动instances,连上(mount)数据库SVRMGR>startupnormal启动instances,连上(mount)数据库打开(open)数据库startup缺省参数是normal③、%lsnrctlstart
3、启动oraclelistener如果出错检查环境变量是否设好,及lsnrctl文件的内容和执行属性。2、关闭数据库①、#su-oracle②、%lsnrctlstop关闭oraclelistener③、%dbshut等待几秒左右,当看到databasecloseddatabasedismountedoracleinstancesshutdown的时候,oracle数据库关闭成功第三步的操作由如下命令组成%svrmgrl唤醒SVRMGR状态SVRMGR>connectinternal连接内核SVRMGR>shutdown关闭数据库SVRMGR>exit%备注:关闭数据库shutdow
4、n可带三个参数,分别是SVRMGR>shutdownabort非正常立刻关机。等于忽然停电SVRMGR>shutdownimmediate做回滚操作,立刻关机。SVRMGR>shutdownnormal正常关机shutdown缺省参数是normal二、用exp、imp命令做逻辑备份1、输出export基本命令:一般用交互方式,在oracle用户提示符下键入%expuser/passwordíexp模式①、table:export某个用户模式下指定的table;而不是所有的table,而且不包括cluster定义;②、user:export一个用户模式下所有的对象(如表、数据、索引等
5、);export示例usermode:③、fulldatabase:exportdatabase中所有的对象,执行这个必须被给exp-full-database角色。export示例A、dababasemode%expsystem/manager.........enterarrayfetchbuffersize:4096>(return)exportfile:expdat.dmp>dba.dmpe(ntiredatabase),u(sers),t(ables):u>eexportgrants(y/n):y>yexporttabledata(y/n):y>ycompressexte
6、nts(y/n):y>yB、tablemode%expsystem/manager.........enterarrayfetchbuffersize:4096>(return)exportfile:expdat.dmp>dba.dmpe(ntiredatabase),u(sers),t(ables):u>texportgrants(y/n):y>yexporttabledata(y/n):y>ycompressextents(y/n):y>yAbouttoexpspecifiedtables...Tabletobeexported(RETURNquit)>emp(输入要输出的表名
7、)....exportingtableEMP14rowsexportedAbouttoexpspecifiedtables...Tabletobeexported(RETURNquit)>如此循环下去,按回车退出2、输入import前提:在database建立之后,必须运行oracle-home/rdbms/admin/catexp.sql才能使用export,import。权限:要使用import,必须要有createsession权限。如果要import其它用户的
此文档下载收益归作者所有