阿里雲ecs上傳超過6G(oracle rman備份檔案)的解決限制方法

dbhelper發表於2015-12-28
阿里雲ecs上傳超過6G(oracle rman備份檔案)的解決限制方法


1.壓縮
[oracle@oracle dba(wang yu qiang)]$tar czvf xxxx.tar.gz  待壓縮檔案


2.切分
[oracle@oracle dba(wang yu qiang)]$split -d -b 1024m  xxxx.tar.gz  xxxx_


3.合併--合併速度:每秒0.1G
[oracle@oracle dba(wang yu qiang)]$ cat xxxx_* >xxxx.tar.gz


Time: 06:51:21 PM
avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           4.00    0.00    3.50   38.50    0.00   54.00


Device:         rrqm/s   wrqm/s   r/s   w/s    rMB/s    wMB/s avgrq-sz avgqu-sz   await  svctm  %util
hda               0.00    12.00  0.00 127.00     0.00     0.54     8.76     1.76   13.11   2.09  26.50
hda1              0.00    12.00  0.00 127.00     0.00     0.54     8.76     1.76   13.11   2.09  26.50
xvdb              0.00     9.00 10.00 10.00     0.07     0.07    14.80     0.19    9.60   8.45  16.90
xvdb1             0.00     0.00  0.00  1.00     0.00     0.00     8.00     0.01    8.00   8.00   0.80
xvdb2             0.00     4.00  0.00  5.00     0.00     0.04    14.40     0.02    3.20   2.20   1.10
xvdb3             0.00     5.00 10.00  4.00     0.07     0.04    15.43     0.17   12.00  11.14  15.60
xvdc             98.00  6482.00 614.00 652.00    25.03    27.67    85.25   148.36  122.36   0.79 100.10
xvdc1            98.00  6482.00 614.00 652.00    25.03    27.67    85.25   148.36  122.36   0.79 100.10
xvdd              0.00     0.00  0.00  0.00     0.00     0.00     0.00     0.00    0.00   0.00   0.30
xvdd1             0.00     0.00  0.00  0.00     0.00     0.00     0.00     0.00    0.00   0.00   0.30




4.解壓


[oracle@oracle dba(wang yu qiang)]$tar xzvf xxxx.tar.gz 






注意:
cat * 找檔案自然是安裝檔案末尾號順序來的列出的


測試如下:
[oracle@oracle dba(wang yu qiang) test]$ cat 2015-3-5-10to11-awr.txt_1_* > split2_cat.txt


[oracle@oracle dba(wang yu qiang) test]$ more *
::::::::::::::
1
::::::::::::::
1
::::::::::::::
2
::::::::::::::
21
::::::::::::::
3
::::::::::::::
31
[oracle@oracle dba(wang yu qiang) test]$ cat *
1
21
31
[oracle@oracle dba(wang yu qiang) test]$ ls -l
total 12
-rw-r--r-- 1 oracle oinstall 2 Dec 23 15:58 1
-rw-r--r-- 1 oracle oinstall 3 Dec 23 15:59 2
-rw-r--r-- 1 oracle oinstall 3 Dec 23 15:59 3
[oracle@oracle dba(wang yu qiang) test]$ ls -lrt
total 12
-rw-r--r-- 1 oracle oinstall 2 Dec 23 15:58 1
-rw-r--r-- 1 oracle oinstall 3 Dec 23 15:59 2
-rw-r--r-- 1 oracle oinstall 3 Dec 23 15:59 3
[oracle@oracle dba(wang yu qiang) test]$ 
[oracle@oracle dba(wang yu qiang) test]$ cat *
1
21
31
[oracle@oracle dba(wang yu qiang) test]$ 
[oracle@oracle dba(wang yu qiang) test]$ 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8494287/viewspace-1965715/,如需轉載,請註明出處,否則將追究法律責任。

相關文章