欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

怎么將Expdp備份數(shù)據(jù)轉(zhuǎn)到ASM中-創(chuàng)新互聯(lián)

這篇文章主要介紹“怎么將Expdp備份數(shù)據(jù)轉(zhuǎn)到ASM中”,在日常操作中,相信很多人在怎么將Expdp備份數(shù)據(jù)轉(zhuǎn)到ASM中問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么將Expdp備份數(shù)據(jù)轉(zhuǎn)到ASM中”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

成都創(chuàng)新互聯(lián)公司主營羅田網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā),羅田h5微信小程序定制開發(fā)搭建,羅田網(wǎng)站營銷推廣歡迎羅田等地區(qū)企業(yè)咨詢

一、問題描述

        需求要使用expdp備份數(shù)據(jù),檢查系統(tǒng)空間很小,不夠放備份文件。直接給系統(tǒng)加空間不就得了,可是這樣一來就要耽誤時間,還要聯(lián)系一大堆人員。此時ASM空間是很充足的,可不可以使用呢。接著就有以下的操作了。

二、實驗

1.數(shù)據(jù)庫建立directory

SYS@PROD1 > create directory databk as '+data/backup';
Directory created.
.
[oracle@sam1 ~]$ expdp system/oracle direcotry=databk dumpfile=all.dmp full=y
LRM-00101: unknown parameter name 'direcotry'
[oracle@sam1 ~]$ expdp system/oracle directory=databk dumpfile=all.dmp full=y
Export: Release 11.2.0.3.0 - Production on Sat Feb 15 08:13:57 2020
Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options
ORA-39002: invalid operation
ORA-39070: Unable to open the log file.
ORA-29283: invalid file operation
ORA-06512: at "SYS.UTL_FILE", line 536
ORA-29283: invalid file operation

此時會有以上報錯,原因是日志無法寫入ASM當(dāng)中導(dǎo)致??梢砸韵聝煞N方式解決:

A.使用NOLOGFILE=YES選項禁用日志。

B.將日志指定到系統(tǒng)的目錄。

2.測試NOLOGFILE=YES 成功完成備份

[oracle@sam1 ~]$ expdp system/oracle directory=databk dumpfile=all.dmp full=y NOLOGFILE=YES
Export: Release 11.2.0.3.0 - Production on Mon Feb 24 01:22:35 2020
Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options
Starting "SYSTEM"."SYS_EXPORT_FULL_01":  system/******** directory=databk dumpfile=all.dmp full=y NOLOGFILE=YES
Estimate in progress using BLOCKS method...
Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 4.809 GB
Processing object type DATABASE_EXPORT/TABLESPACE
Processing object type DATABASE_EXPORT/PROFILE
Processing object type DATABASE_EXPORT/SYS_USER/USER
Processing object type DATABASE_EXPORT/SCHEMA/USER
Processing object type DATABASE_EXPORT/ROLE
Processing object type DATABASE_EXPORT/GRANT/SYSTEM_GRANT/PROC_SYSTEM_GRANT
…...
. . exported "SYSTEM"."REPCAT$_USER_PARM_VALUES"             0 KB       0 rows
. . exported "SYSTEM"."SQLPLUS_PRODUCT_PROFILE"              0 KB       0 rows
Master table "SYSTEM"."SYS_EXPORT_FULL_01" successfully loaded/unloaded
******************************************************************************
Dump file set for SYSTEM.SYS_EXPORT_FULL_01 is:
  +DATA/backup/all.dmp
Job "SYSTEM"."SYS_EXPORT_FULL_01" completed with 1 error(s) at 01:25:42

3.測試將log寫到其他位置 成功完成備份

需要建立一個放log的directory

SYS@PROD1 > create directory logdump as '/home/oracle';
Directory created.
[oracle@sam1 ~]$ expdp system/oracle directory=databk dumpfile=scott.dmp  schemas=scott logfile=logdump:expdp_scott.log
Export: Release 11.2.0.3.0 - Production on Mon Feb 24 04:50:37 2020
Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options
Starting "SYSTEM"."SYS_EXPORT_SCHEMA_01":  system/******** directory=databk dumpfile=scott.dmp schemas=scott logfile=logdump:expdp_scott.log
Estimate in progress using BLOCKS method...
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 320 KB
Processing object type SCHEMA_EXPORT/USER
Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
Processing object type SCHEMA_EXPORT/ROLE_GRANT
Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
Processing object type SCHEMA_EXPORT/TABLE/TABLE
Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . exported "SCOTT"."DEPT"                              5.929 KB       4 rows
. . exported "SCOTT"."EMP"                               8.562 KB      14 rows
. . exported "SCOTT"."SALGRADE"                          5.859 KB       5 rows
. . exported "SCOTT"."TABLE1"                            5.835 KB       2 rows
. . exported "SCOTT"."TEST"                              5.421 KB       1 rows
. . exported "SCOTT"."BONUS"                                 0 KB       0 rows
Master table "SYSTEM"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
******************************************************************************
Dump file set for SYSTEM.SYS_EXPORT_SCHEMA_01 is:
  +DATA/backup/scott.dmp
Job "SYSTEM"."SYS_EXPORT_SCHEMA_01" successfully completed at 04:51:03
[oracle@sam1 ~]$ ls -l expdp_scott.log
-rw-r--r-- 1 oracle asmadmin 2080 Feb 24 04:51 expdp_scott.log

到此,關(guān)于“怎么將Expdp備份數(shù)據(jù)轉(zhuǎn)到ASM中”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

當(dāng)前名稱:怎么將Expdp備份數(shù)據(jù)轉(zhuǎn)到ASM中-創(chuàng)新互聯(lián)
文章路徑:http://aaarwkj.com/article2/phjoc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供虛擬主機、微信小程序、品牌網(wǎng)站制作網(wǎng)站制作、網(wǎng)站建設(shè)動態(tài)網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都app開發(fā)公司
国产乱码免费一区二区三区| 国产日韩欧在线视频| 韩国久久久久三级成人| 人成在线免费视频网站| 精品国产av色一区二区| 国产三级精品正在播放| 四虎国产精品久久久久久网址| 传媒视频在线观看网站| 亚洲国产日本一区自拍| 91精品国产高清一区二区性色| 国产亚洲高清一区二区| 狼人私人影院在线观看| 高清欧美一区二区三区日本| 国产精品一久久香蕉产线看| 九九热这里只有免费精品| 国产我不卡在线观看免费| 国产成人激情自拍视频在线观看| 免费在线观看一区二区三区视频 | 亚洲成人av福利网站| 禁止未满十八在线观看| 欧美一区二区三区人妻熟妇| 黄色日韩大片在线观看| 国产亚洲理论片在线观看| 熟妇人妻久久中文字幕麻豆网| 自偷自拍在线免费观看| 丁香六月婷婷激情啪啪综合| 精品国产一区二区三区卡| 国产精品青青草原在线| 蜜桃免费观看在线视频| 一区二区三区艳情播放| 91香蕉伊人综合久久麻豆| 一区二区尤物区亚洲国产精品区| 亚洲一区二区三区熟妇| 国产精品xxxx国产精品| 亚洲性视频日韩性视频| 在线国产一区二区不卡| 国产欧美日韩精品三级| 18禁视频免费无遮挡| 欧美成人高清在线播放| 天堂免费av在线播放| 九九99九九99九九精品在线观看|