锁儿's Blog

skip to my lou

导航

随笔分类 -  ORACLE

摘要:查看表空间占用量 select tablespace_name,sum(bytes)/1024/1024/1024 GB from dba_data_files group by tablespace_name union allselect tablespace_name,sum(bytes)/1024/1024/1024 GB from dba_temp_files grou... 阅读全文

posted @ 2007-04-06 10:39 锁儿 阅读(810) 评论(0) 推荐(0)

摘要:首先, 查看oracle数据库字符集的方法如下 1. 数据库服务器字符集 select * from nls_database_parameters,其来源于props$,是表示数据库的字符集。 2.客户端字符集环境select * from nls_instance_parameters,其来源于v$parameter, 表示客户端的字符集的设置,可能是参数文件,环境变量或者是注册表 3... 阅读全文

posted @ 2006-10-26 09:48 锁儿 阅读(1701) 评论(0) 推荐(0)