This task determines whether your Oracle database is using a character set that is compatible with the ISO Latin-1 character set.
Complete this task only once, on any computer with a database client that connects to the Oracle database server.
To configure an Oracle database:
select value from nls_database_parameters where parameter='NLS_CHARACTERSET';
Output |
Description and Action |
---|---|
VALUE |
The current character set is compatible with the ISO Latin-1 character set. No changes are necessary. Skip to 1d. |
VALUE |
The current character set is not compatible with the ISO Latin-1 character set, but can be changed. Skip to 1d. |
any other output |
The current character is not compatible. Skip to 1c. |
This utility simulates the new character sets and generates a report or user objects that would be affected if you changed the character set. If the report indicates no problems, continue with the following steps. If problems are listed in the report, contact BMC Customer Support.
select * from nls_database_parameters where parameter in ('NLS_COMP','NLS_SORT');
The output should resemble the following sample and indicate the binary sort order:
PARAMETER VALUE
-------------------------- -----------
NLS_SORT BINARY
NLS_COMP BINARY
If the sort order is not binary, contact BMC Customer Support. Do not continue customizing Western European language support.
Application / component |
Command |
---|---|
Control-M/EM |
UNIX: Microsoft Windows: |
Control-M/Server |
ctm_backup_bcp |
sqlplus /nolog
connect / as sysdba
SHUTDOWN IMMEDIATE;
STARTUP MOUNT
ALTER SYSTEM ENABLE RESTRICTED SESSION;
ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0;
ALTER SYSTEM SET AQ_TM_PROCESSES=0;
ALTER DATABASE OPEN;
ALTER DATABASE CHARACTER SET INTERNAL_USE WE8ISO8859P1;
SHUTDOWN IMMEDIATE
STARTUP;
Parent Topic |