|
2019-05-27 2019-05-29
关于NLS_LANG:- Last login: Mon May 27 21:00:00 2019 from server65.example.com
- [oracle@station80 ~]$ echo $NLS_LANG
- american_america.AL32UTF8
- [oracle@station80 ~]$ sqlplus /nolog
- SQL*Plus: Release 11.2.0.4.0 Production on Mon May 27 21:36:27 2019
- Copyright (c) 1982, 2013, Oracle. All rights reserved.
- SQL> conn hr/oracle_4U
- Connected.
- SQL> select to_char(salary,'L999,999,999.00') from employees where employee_id= 100;
- TO_CHAR(SALARY,'L999,999,
- -------------------------
- $24,001.00
- SQL> exit
- Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64 bit Production
- With the Partitioning, Automatic Storage Management, OLAP, Data Mining
- and Real Application Testing options
- [oracle@station80 ~]$ export NLS_LANG=simplified chinese_china.AL32UTF8
- -bash: export: `chinese_china.AL32UTF8': not a valid identifier
- [oracle@station80 ~]$ export NLS_LANG="simplified chinese_china.AL32UTF8"
- [oracle@station80 ~]$ echo $NLS_LANG
- simplified chinese_china.AL32UTF8
- [oracle@station80 ~]$ sqlplus /nolog
- SQL*Plus: Release 11.2.0.4.0 Production on 星期一 5月 27 21:38:07 2019
- Copyright (c) 1982, 2013, Oracle. All rights reserved.
- SQL> conn hr/oracle_4U
- Connected.
- SQL> select to_char(salary,'L999,999,999.00') from employees where employee_id =100;
- TO_CHAR(SALARY,'L999,999,
- -------------------------
- ¥24,001.00
- SQL>
复制代码
操作系统安装之前要调整的参数:- kernel.shmmax = 68719476736
复制代码 [root@station80 ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/RAC12crhel6-root
44G 23G 20G 54% /
tmpfs 1.8G 478M 1.4G 26% /dev/shm
/dev/sda1 283M 116M 149M 44% /boot
dbca模版所在的位置:
/u01/app/oracle/product/11.2.0/dbhome_1/assistants/dbca/templates
|
|