国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

詳細(xì)講解Oracle數(shù)據(jù)庫(kù)10g RMAN的備份過(guò)程

瀏覽:93日期:2023-11-28 14:35:35
1.首先查看一下Oracle的數(shù)據(jù)文件

SQL> select name from v$datafile;

NAME

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

/dev/rora_system

/dev/rora_undo1

/dev/rora_sysaux

/dev/rora_users

/dev/rora_example

2.建立RMAN所需的表空間,這里采用裸設(shè)備“/dev/rora_backup”

SQL> create tablespace ora_backup datafile'/dev/rora_backup' size 500M;

Tablespace created.

進(jìn)行查看確認(rèn)

SQL> select name from v$datafile;

NAME

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

/dev/rora_system

/dev/rora_undo1

/dev/rora_sysaux

/dev/rora_users

/dev/rora_example

/dev/rora_backup

6 rows selected.

已經(jīng)發(fā)現(xiàn)ora_backup表空間

3.建立RMAN用戶(hù)以及設(shè)定密碼和用戶(hù)表空間

SQL> create user rman identified by rman default tablespace ora_backup temporay tablespace temp

2 ;

create user rman identified by rman default tablespace ora_backup temporay tablespace temp

*

ERROR at line 1:

ORA-00922: missing or invalid option

在此處出錯(cuò),原來(lái)是temporay打錯(cuò),繼續(xù)。

SQL> create user rman identified by rman default tablespace ora_backup temporary tablespace temp;

User created.

呵呵,成功

4.給用戶(hù)授權(quán)

SQL> grant connect,resource,recovery_catalog_owner to rman

2 ;

Grant succeeded.

5.連接到數(shù)據(jù)庫(kù)

SQL> rman target 'zhirui' catalog rman/rman

SP2-0734: unknown command beginning 'rman targe...' - rest of line ignored.

呵呵,又出錯(cuò)了,沒(méi)退出SQL。

SQL> exit

Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production

With the Partitioning, OLAP and Data Mining options

$ rman target 'zhirui'catalog rman/rman

這下應(yīng)該可以了吧

Argument Value Description

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

target quoted-string connect-string for target database

catalog quoted-string connect-string for recovery catalog

nocatalog none if specified, then no recovery catalog

cmdfile quoted-string name of input command file

log quoted-string name of output message log file

trace quoted-string name of output debugging message log file

append none if specified, log is opened in append mode

debug optional-args activate debugging

msgno none show RMAN-nnnn prefix for all messages

send quoted-string send a command to the media manager

pipe string building block for pipe names

timeout integer number of seconds to wait for pipe input

checksyntax none check the command file for syntax errors

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

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

Quotes are not required unless the string contains embedded white-space.

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

RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============

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

RMAN-00552: syntax error in command line arguments

RMAN-01009: syntax error: found 'rman': expecting one of: 'append, at, auxiliary, catalog, cmdfile, clone, checksyntax,'

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

恩?怎么回事?

$ rman

Recovery Manager: Release 10.2.0.1.0 - Production on Fri May 25 00:37:24 2007

Copyright (c) 1982, 2005, Oracle. All rights reserved.

RMAN> connect catalog rman/rman

connected to recovery catalog database

RMAN> exit

Recovery Manager complete.

可以連接呀,再來(lái)

$ rman target 'zhirui' catalog rman/rman

Recovery Manager: Release 10.2.0.1.0 - Production on Fri May 25 00:38:13 2007

Copyright (c) 1982, 2005, Oracle. All rights reserved.

target database Password:

connected to target database: ZHIRUI (DBID=1679784276)

connected to recovery catalog database

恩,連接進(jìn)去了。

6.注冊(cè)數(shù)據(jù)庫(kù)

RMAN> register database;

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

RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============

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

RMAN-03002: failure of register command at 05/25/2007 00:38:55

RMAN-06428: recovery catalog is not installed

出錯(cuò),recovery catalog is not installed

RMAN> register database zhirui;

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

RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============

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

RMAN-00558: error encountered while parsing input commands

RMAN-01009: syntax error: found 'identifier': expecting one of: ';'

RMAN-01008: the bad identifier was: zhirui

RMAN-01007: at line 1 column 19 file: standard input

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

RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============

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

RMAN-00558: error encountered while parsing input commands

RMAN-01009: syntax error: found ';': expecting one of: 'allocate, alter, backup, beginline, blockrecover, catalog, chan'

RMAN-01007: at line 1 column 25 file: standard input

7.建立catalog表空間到ora_backup

RMAN> create catalog tablespace ora_backup

recovery catalog created

這下可以注冊(cè)了吧。

RMAN> register database;

database registered in recovery catalog

starting full resync of recovery catalog

full resync complete

注冊(cè)成功

8.嘗試備份全庫(kù)

RMAN> run {

2> allocate channel dev1 type disk;

3> backup

4> format '/home/oracle/data/db_t%t_s%s_p%p'

5> (database);

6> release channel dev1;

7> }

allocated channel: dev1

channel dev1: sid=159 devtype=DISK

Starting backup at 25-MAY-07

channel dev1: starting full datafile backupset

channel dev1: specifying datafile(s) in backupset

input datafile fno=00006 name=/dev/rora_backup

input datafile fno=00001 name=/dev/rora_system

input datafile fno=00003 name=/dev/rora_sysaux

input datafile fno=00005 name=/dev/rora_example

input datafile fno=00002 name=/dev/rora_undo1

input datafile fno=00004 name=/dev/rora_users

channel dev1: starting piece 1 at 25-MAY-07

至此,成功。

主站蜘蛛池模板: 嫩草影院成人 | 亚洲一级毛片免费看 | 国产精品自拍一区 | 韩国成人毛片aaa黄 韩国福利一区 | 九九精品视频一区在线 | 欧美一级在线看 | 国产农村乱子伦精品视频 | 日韩不卡一级毛片免费 | 免费一级做a爰片久久毛片 免费一级做a爰片性色毛片 | 一二三区在线观看 | 精品成人在线视频 | 国产成人女人视频在线观看 | 97免费视频在线 | 亚洲国产精品综合欧美 | 国产男女 爽爽爽爽视频 | avhd101天天看新片 | 我要看一级大片 | 国产三级欧美 | 日韩a级一片| 亚洲成a人在线观看 | 欧美成人精品福利在线视频 | 国产精品分类视频分类一区 | 精品国产品国语在线不卡丶 | 国产午夜毛片一区二区三区 | 人成免费网站 | 亚洲精品黄色 | 99精品国产高清一区二区三区香蕉 | 成人在线网站 | 黄.www | 精品一区二区影院在线 | 美女国产福利视频 | 久久国产成人 | 毛片在线观看视频 | 欧美一级毛片片aa视频 | 国产男女爽爽爽爽爽免费视频 | 久久国产精品一国产精品 | 国产亚洲精品aaa大片 | 国产亚洲精品美女一区二区 | 久久福利青草狠狠午夜 | 精品无人区一区二区三区a 精品午夜国产在线观看不卡 | 国产日本在线 |