首页 > 数据库 >oracle数据库启停

oracle数据库启停

时间:2023-10-23 20:31:59浏览次数:42  
标签:ps sqlplus 数据库 ef sysdba 启停 export SID oracle

使用oracle登录
// 停止

1.ps -ef|grep smon


2.export ORACLE_SID=cbsdba(这是实例名字 )


3. sqlplus / as sysdba  


4.shutdown  immediate;


// 启动

1.ps -ef|grep smon


2.export ORACLE_SID=cbsdba


3. sqlplus /as sysdba  


4.startup;


5.alter  pluggable database all open;

标签:ps,sqlplus,数据库,ef,sysdba,启停,export,SID,oracle
From: https://blog.51cto.com/u_16190206/7993978

相关文章

  • Oracle中通过组内排序实现行转列(三)
    1纵表平铺1.1原数据 1.2平铺结果:每个班级按照年龄从小到大平铺为一行select*from(selectrt.class,row_number()over(partitionbyrt.classorderbyrt.age)row_num,rt.sno,rt.snamefromrank_tes......
  • 怎样将SQL Server数据库迁移到新服务器
    一、在老的服务器上打开SQLServerManagementStudio,输入数据库用户名和密码后登录数据库。二、打开对象资源管理器,打开数据库找到需要迁移的数据库,比如这里的test数据库。三、选中需要迁移的数据库,右键点击数据,打开数据库属性,点击文件,查看并记录数据库的路径,然后关......
  • Linux平台下Oracle数据泵备份(expdp)SHELL脚本
    数据泵是Oracle10g的新特性,10g以后的版本才有。关于数据泵的理论知识参考我的Blog:Oracle10gEXPDP和IMPDP使用说明http://www.cndba.cn/Dave/article/1115 Logicalbackup.sh#!/bin/ksh#####################################################################......
  • Oracle10gOCP042题库121166题共168题
    121.Youwanttocreateanewoptimizeddatabaseforyourtransactionalproductionenvironmenttobeusedbyafinancialapplication.Whilecreatingthedatabase,youwanttheOraclesoftwaretotakecareofallbasicsettingstooptimizethedatabasep......
  • Oracle10gOCP042题库130题共168题
    声明:对于答案的相关的说明,是个人对Oracle的理解。1.Becauseofapoweroutage,instancefailurehasoccurred.Fromwhatpointintheredologdoesrecoverybeginandwheredoesitend?A.CurrentredologandinactiveredologB.Checkpointpositiontoendofr......
  • Oracle10gOCP042题库3170题共168题
    31.WhichtwostatementsaretrueregardingthedatabaseinARCHIVELOGmode?(Choosetwo.) A)Youhavetoshutdownthedatabasetoperformthebackups. B)Archivinginformationiswrittentothedatafilesandredologfiles. C)Youcanperformcomp......
  • Oracle10gOCP042题库71120题共168题
    71.Yourdatabaseinstanceisstartedusingtheserverparameterfile(SPFILE).Controlfilesaremultiplexedandstoredondifferentdisks.Becauseofadiskfailure,youlostoneofthesecontrolfiles.Youreplacedthedamageddisk.Whatisthecorre......
  • 数据库基本命令
    1.对库的增删改查1.增加一个库creatrdatabasedb1;#后面是库的名字showdatabases;#查看所有库showcreatrdatabasedb1;#查看库的结构alterdatabasedb1charset='utf8';#修改字符编码dropdatabasedb1;#删除一个库usedb1......
  • sqlserver 服务器主体 无法在当前安全上下文下访问数据库
    SELECTname,database_id,is_trustworthy_onFROMsys.databasesALTERDATABASEbole_dataSETTRUSTWORTHYONALTERAUTHORIZATIONONDATABASE::bole_dataTObole 今天使用sqlserver,发现了一个问题,就是使用insertinto数据库名.dbo.表名(字段)values(值)这样语句的......
  • spring data jpa 使用原生sql查询数据库 原生sql中有in关键字 该如何传参?直接传List集
    springdatajpa使用原生sql查询数据库原生sql中有in关键字该如何传参?直接传List集合就能找到数据,解析List集合交给springdatajpa框架去做遇到问题?第一次写的时候in关键字后面传的是将List集合转化为一个这样的字符串,"'123','23','23'" @Query(nativeQuery=true,......