惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
A
About on SuperTechFans
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
B
Blog RSS Feed
大猫的无限游戏
大猫的无限游戏
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
L
LangChain Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

博客园 - recx

oracle bi publisher error with word 2007 android+soap+.net+webservice oracle EBS自定义文件夹以及分配 20110105杂记 删除 excel 加密破解 无聊 PowerCenter Designer小结 NXBRE-Execution 让生活更精致舒适的小常识 关于依赖注入(Denpendency Injection)OR 控制反转(IoC = Inversion of Control) 值得收藏的146条经典民间偏方(转) 食品 oracle 创建同义词(synonym) 问题 农村的机会 别人推荐的书 oracle ctl 文件格式(追加数据) 转:天冷了,大家如果有去年的不穿的衣服别扔....寄给需要的人好吗? 偶对观察者模式的理解
rman数据库的启动
recx · 2008-05-11 · via 博客园 - recx

rman是一个独立的数据库,每次主机重启后,都需要手工启动 。手工启动过程中,容易出现RMAN-04004: error from recovery catalog database:ORA-12514: TNS:listener could not resolve SERVICE_NAME given in connect descriptor的错误。解决该问题的办法:

export ORACLE_SID=rcat(rman数据库名)

sqlplus sys/rman as sysdba(用户名和密码自己保存)

shutdown   abort     
startup   nomount

alter   database   mount;

alter   database   open;

一般情况下,这样就可以启动了。如果有错误,可以定位到中间的某一步。