1, in the construction of the library, Catproc must be running, otherwise with Rman will appear the following character set error:
Rman-00554:initialization of internal Recovery manager package failed
Rman-04005:error from Target Database:ora-06553:pls-213:package standard Noe
Rman-04015:error setting target database character set to zhs16cgb231280
If there is no problem building the library, then you can re-run catproc.sql. This would in turn call the Dbmsbkrs.sql script which creates the Dbms_backup_restore package.
2. Chinese Character Set description
zhs16cgb231280 cgb2312-80 16-bit Simplified Chinese MB, ASCII
ZHS16GBK GBK 16-bit Simplified Chinese MB, ASCII, UDC
In short, ZHS16GBK is a superset of zhs16cgb231280.
1990 China, Japan, South Korea jointly developed the unified East Asian ideographs character set, commonly known as the GB extension code character set (GBK).
3. How to avoid Chinese support problems
Our usual advice is to plan when you build the library so that there will be no problems later.
1) Create Database
Character Set ZHS16GBK
National Character Set ZHS16GBK
2) environment variable: Nls_lang=american_america. Zhs16gbk
The best export nl2004-10-20_format= ' yyyy-mm-dd HH24:MI:SS ' specifies the date format;
3) If you specify the props$ in the database characterset must be ZHSS16GBK:
Nls_characterset ZHS16GBK
Nls_nchar_characterset ZHS16GBK
If it is not possible to use update changes, but this will have an impact on existing data, or even the entire database can not be used, so in the library after the validation, a good DBA is able to try to avoid the problem, rather than wait until the problem before the fire.
As a result, there will be no more character sets and Chinese support issues. Do you have any questions? Contact me:)
http://www.bkjia.com/PHPjc/314203.html www.bkjia.com true http://www.bkjia.com/PHPjc/314203.html techarticle 1, in the construction of the library, Catproc must run, or RMAN will appear the following character set error: Rman-00554:initialization of internal Recovery manager package failed RMAN-04005: ...