zoukankan      html  css  js  c++  java
  • NLS_LANG SIMPLIFIED CHINESE_CHINA.AL32UTF8 和american_america.AL32UTF8

    oadb01:/home/oracle> echo $NLS_LANG
    SIMPLIFIED CHINESE_CHINA.AL32UTF8
    oadb01:/home/oracle> sqlplus query/query
    
    SQL*Plus: Release 11.2.0.4.0 Production on 星期一 2月 15 20:49:30 2016
    
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> COL NICK FORMAT A30  
    SQL> SELECT * FROM DENGJI;
    
    NICK			       F CREATETIME
    ------------------------------ - --------------
    赵杨健                         1 15-2月 -16
    
    
    oadb01:/home/oracle> export NLS_LANG=american_america.AL32UTF8
    oadb01:/home/oracle> sqlplus query/query
    
    SQL*Plus: Release 11.2.0.4.0 Production on Mon Feb 15 20:51:25 2016
    
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> COL NICK FORMAT A30
    SQL> SELECT * FROM DENGJI;
    
    NICK			       F CREATETIME
    ------------------------------ - ------------------
    赵杨健                         1 15-FEB-16

  • 相关阅读:
    Shell脚本创建Nginx的upstream及location配置文件
    系统初始化
    算法训练 P0505
    算法训练 素因子去重
    基础训练 时间转换
    基础训练 字符串对比
    基础训练 分解质因数
    基础训练 矩形面积交
    快速幂矩阵
    基础训练 矩阵乘法
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13351013.html
Copyright © 2011-2022 走看看