CREATE CONTROLFILE REUSE DATABASE EMREP NORESETLOGS FORCE LOGGING ARCHIVELOG  2      MAXLOGFILES 16  3 ..."/>
溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

重建控制文件報錯

發(fā)布時間:2020-07-27 09:42:26 來源:網(wǎng)絡(luò) 閱讀:883 作者:974479959 欄目:關(guān)系型數(shù)據(jù)庫

SQL> CREATE CONTROLFILE REUSE DATABASE "EMREP" NORESETLOGS FORCE LOGGING ARCHIVELOG
  2      MAXLOGFILES 16
  3      MAXLOGMEMBERS 3
  4      MAXDATAFILES 100
  5      MAXINSTANCES 8
  6      MAXLOGHISTORY 292
  7  LOGFILE
  8    GROUP 1 '/u01/app/oracle/oradata/EMREP/redo01.log'  SIZE 50M,
  9    GROUP 2 '/u01/app/oracle/oradata/EMREP/redo02.log'  SIZE 50M,
 10    GROUP 3 '/u01/app/oracle/oradata/EMREP/redo03.log'  SIZE 50M
 11  -- STANDBY LOGFILE
 12 
SQL> DATAFILE
SP2-0042: unknown command "DATAFILE" - rest of line ignored.
SQL>   '/u01/app/oracle/oradata/EMREP/system01.dbf',
SP2-0734: unknown command beginning "'/u01/app/..." - rest of line ignored.
SQL>   '/u01/app/oracle/oradata/EMREP/undotbs01.dbf',
SP2-0734: unknown command beginning "'/u01/app/..." - rest of line ignored.
SQL>   '/u01/app/oracle/oradata/EMREP/sysaux01.dbf',
SP2-0734: unknown command beginning "'/u01/app/..." - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
SQL>   '/u01/app/oracle/oradata/EMREP/users01.dbf',
SP2-0734: unknown command beginning "'/u01/app/..." - rest of line ignored.
SQL>   '/u01/app/oracle/oradata/EMREP/example01.dbf',
SP2-0734: unknown command beginning "'/u01/app/..." - rest of line ignored.
SQL>   '/u01/app/oracle/oradata/EMREP/goldengate01.dbf',
SP2-0734: unknown command beginning "'/u01/app/..." - rest of line ignored.
SQL>   '/u01/app/oracle/oradata/EMREP/gguser.dbf'
SP2-0734: unknown command beginning "'/u01/app/..." - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.

 

解決方法:

SQL> set sqlbl on

因為我們在執(zhí)行腳本的時候腳本中有空白行所以造成以上的報錯。

 

以下是來之文檔的解釋:

SET SQLBL[ANKLINES] {ON | OFF}

SET SQLBLANKLINES is not supported in iSQL*Plus

Controls whether SQL*Plus puts blank lines within a SQL command or script. ON interprets blank lines and new lines as part of a SQL command or script. OFF, the default value, does not allow blank lines or new lines in a SQL command or script or script.

Enter the BLOCKTERMINATOR to stop SQL command entry without running the SQL command. Enter the SQLTERMINATOR character to stop SQL command entry and run the SQL statement

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI