签到成功

知道了

CNDBA社区CNDBA社区

RMAN-01009: syntax error: found "dot" 解决方法

2016-11-25 15:41 3152 0 原创 Oracle 故障处理
作者: dave

 

 

http://www.cndba.cn/dave/article/441

今天调试一个RMAN 的备份脚本,这个脚本以前也用过很多次,并没有什么问题,今天执行时,就是过不去。

 

操作系统:Redhat 5.8

数据库:11.2.0.3

 

错误如下:

RMAN-00571:===========================================================

RMAN-00569: =============== ERROR MESSAGESTACK FOLLOWS ===============

RMAN-00571:===========================================================

RMAN-00552: syntax error in command linearguments

RMAN-01009: syntax error:found "dot": expecting one of: "double-quoted-string,identifier, single-quoted-string, "

RMAN-01007: at line 2 column 1 file:command line arguments

 http://www.cndba.cn/dave/article/441

这个错误,提示在第二行有问题。

http://www.cndba.cn/dave/article/441
http://www.cndba.cn/dave/article/441

 http://www.cndba.cn/dave/article/441

根据MOS 文档[ID427224.1]的说明:

How to check for correct RMAN syntax [ID427224.1]

 

我们也可以使用rman checksyntax 命令检查RMAN 脚本的语法问题。

 

如下:

[oracle@rac1 scripts]$ rman checksyntaxrman.sh

 

Argument    Value          Description

-----------------------------------------------------------------------------

target      quoted-string  connect-string fortarget database

catalog     quoted-string  connect-string forrecovery catalog

nocatalog   none           if specified, thenno recovery catalog

http://www.cndba.cn/dave/article/441
http://www.cndba.cn/dave/article/441

cmdfile     quoted-string  name of inputcommand file

log         quoted-string  name of outputmessage log file

trace       quoted-string  name of outputdebugging message log file

append      none           if specified, logis opened in append mode

debug       optional-args  activate debugging

msgno       none           show RMAN-nnnnprefix for all messages

send        quoted-string  send a command tothe media manager

pipe        string         building block forpipe names

timeout     integer        number of secondsto wait for pipe input

checksyntax none           check the commandfile for syntax errors

-----------------------------------------------------------------------------http://www.cndba.cn/dave/article/441

Both single and double quotes (' or ")are accepted for a quoted-string.

Quotes are not required unless the stringcontains embedded white-space.

 

RMAN-00571:===========================================================

RMAN-00569: =============== ERROR MESSAGESTACK FOLLOWS ===============

RMAN-00571:===========================================================

RMAN-00552: syntax error in command linearguments

http://www.cndba.cn/dave/article/441

RMAN-01009: syntax error: found"rman": expecting one of: "append, auxiliary, catalog,checksyntax, cmdfile, log, msgno, nocatalog, pipe, script, send, target,timeout, using, @, ;"

RMAN-01007: at line 2 column 1 file:command line arguments

 

 

 

RMAN 脚本的开始一段内容如下:

#!/bin/ksh

export LANG=en_US

BACKUP_DATE=`date +%d`

http://www.cndba.cn/dave/article/441

RMAN_LOG_FILE=${0}.out

TODAY=`date`

USER=`id|cut -d "(" -f2|cut -d")" -f1`

echo"-----------------$TODAY-------------------">$RMAN_LOG_FILE

ORACLE_HOME=/u01/app/oracle/11.2.0/db_1

export ORACLE_HOME

RMAN=$ORACLE_HOME/bin/rman

export RMAN

 

错误提示的第二行也只是一个大概范围,我们这里报错,是因为$RMAN_LOG_FILE变量来自shell变量$0,使用了相对路径,而有些版本rman不支持相对路径,因此执行时报错。

 

 

解决方法是给$RMAN_LOG_FILE予绝对路径:

将:

RMAN_LOG_FILE=${0}.out

修改成:

RMAN_LOG_FILE=`pwd`/${0}.out

 

再次执行就ok了。

 

 

 

 

 

---------------------------------------------------------------------------------------

版权所有,文章允许转载,但必须以链接方式注明源地址,否则追究法律责任!

Skype:    tianlesoftware

QQ:       tianlesoftware@gmail.com

Email:    tianlesoftware@gmail.com

Blog:     http://blog.csdn.net/tianlesoftware

Weibo:    http://weibo.com/tianlesoftware

Twitter:  http://twitter.com/tianlesoftware

Facebook: http://www.facebook.com/tianlesoftware

Linkedin: http://cn.linkedin.com/in/tianlesoftware


版权声明:本文为博主原创文章,未经博主允许不得转载。

用户评论
* 以下用户言论只代表其个人观点,不代表CNDBA社区的观点或立场
dave

dave

关注

人的一生应该是这样度过的:当他回首往事的时候,他不会因为虚度年华而悔恨,也不会因为碌碌无为而羞耻;这样,在临死的时候,他就能够说:“我的整个生命和全部精力,都已经献给世界上最壮丽的事业....."

  • 2261
    原创
  • 3
    翻译
  • 578
    转载
  • 191
    评论
  • 访问:7970333次
  • 积分:4346
  • 等级:核心会员
  • 排名:第1名
精华文章
    最新问题
    查看更多+
    热门文章
      热门用户
      推荐用户
        Copyright © 2016 All Rights Reserved. Powered by CNDBA · 皖ICP备2022006297号-1·

        QQ交流群

        注册联系QQ