zoukankan      html  css  js  c++  java
  • OCP-1Z0-053-V12.02-459题

    459.What elements of globalization can be explicitly defined using the NLS_LANG environment variable?

    (Choose all that apply.)

    A. NLS_LANGUAGE

    B. NLS_SORT

    C. NLS_CALENDAR

    D. NLS_CHARACTERSET

    E. NLS_TERRITORY

    Answer: ADE


    答案解析:

    参考:http://docs.oracle.com/cd/E11882_01/server.112/e10729/ch3globenv.htm#NLSPG193


    NLS_LANG

    (Read-only) The NLS_LANG option specifies the current language, territory, and database character set, which are determined by session-wide globalization parameters.

    xample 5-75 Checking the Current Value of NLS_LANG

    SHOW NLS_LANG statement might produce the following.

    AMERICAN_AMERICA.WE8ISO8859P1

    Choosing a Locale with the NLS_LANG Environment Variable

    A locale is a linguistic and cultural environment in which a system or program is running. Setting the NLS_LANG environment parameter is the simplest way to specify locale behavior for Oracle Database software. It sets the language and territory used by the client application and the database server. It also sets the client's character set, which is the character set for data entered or displayed by a client program.

    NLS_LANG is set as an environment variable on UNIX platforms. NLS_LANG is set in the registry on Windows platforms.

    The NLS_LANG parameter has three components: language, territory, and character set. Specify it in the following format, including the punctuation:

    NLS_LANG = language_territory.charset

    For example, if the Oracle Universal Installer does not populate NLS_LANG, then its value by default is AMERICAN_AMERICA.US7ASCII. The language is AMERICAN, the territory is AMERICA, and the character set is US7ASCII. The values in NLS_LANG and other NLS parameters are case-insensitive.

    Each component of the NLS_LANG parameter controls the operation of a subset of globalization support features:

    • language

      Specifies conventions such as the language used for Oracle Database messages, sorting, day names, and month names. Each supported language has a unique name; for example, AMERICANFRENCH, or GERMAN. The language argument specifies default values for the territory and character set arguments. If the language is not specified, then the value defaults to AMERICAN.

    • territory

      Specifies conventions such as the default date, monetary, and numeric formats. Each supported territory has a unique name; for example, AMERICA,FRANCE, or CANADA. If the territory is not specified, then the value is derived from the language value.

    • charset

      Specifies the character set used by the client application (normally the Oracle Database character set that corresponds to the user's terminal character set or the OS character set). Each supported character set has a unique acronym, for example, US7ASCIIWE8ISO8859P1WE8DECWE8MSWIN1252, orJA16EUC. Each language has a default character set associated with it.

      NLS_LANGUAGE

      Language

      Derived from NLS_LANG

      I, A

      NLS_TERRITORY

      Territory

      Derived from NLS_LANG

      I, A


     
  • 相关阅读:
    前端开发者进阶之ECMAScript新特性--Object.create
    JS事件:target与currentTarget区别
    30分钟掌握ES6/ES2015核心内容
    百度跨域搜索demo
    <a>标签的SEO优化细节
    jQuery之异步Ajax请求使用
    小tips: zoom和transform:scale的区别
    JSP页面静态化总结之一使用URLRewrite实现url地址伪静态化
    web前端安全机制问题全解析
    【转】Asp.net MVC Comet推送
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316362.html
Copyright © 2011-2022 走看看