Home  >  Article  >  Database  >  查看不同地方的Oracle字符集信息

查看不同地方的Oracle字符集信息

WBOY
WBOYOriginal
2016-06-07 15:44:401021browse

(1).数据库服务器字符集 SQL select * from nls_database_parameters; 来源于props$,是表示数据库的字符集。 (2).客户端字符集环境 SQL select * from nls_instance_parameters; 其来源于v$parameter,表示客户端的字符集的设置,可能是参数文件,环境变量

(1).数据库服务器字符集

SQL> select * from nls_database_parameters;

来源于props$,是表示数据库的字符集。

(2).客户端字符集环境

SQL> select * from nls_instance_parameters;

其来源于v$parameter,表示客户端的字符集的设置,可能是参数文件,环境变量或者是注册表

(3).会话字符集环境

SQL> select * from nls_session_parameters;

 

 

查看db_block_size大小

SQL> show parameter db_block_size;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn