關於oracle的一些命令

2022-03-27 21:55:25 字數 946 閱讀 6447

select userenv('language') from dual:檢視當前資料庫所用的字符集;

select * from v$nls_parameters;

或者:select * from nls_database_parameters 

或者:select userenv('language') from dual; 以上三條都是檢視資料庫當前字符集引數設定

select * from v$nls_valid_values; 檢視資料庫可用字符集引數設定

另外: 客戶端 nls_lang 的設定方法 

windows: 

# 常用中文字符集 

set nls_lang=simplified chinese_china.zhs16gbk 

# 常用unicode字符集 

set nls_lang=american_america.al32utf8 

可以通過修改登錄檔鍵值永久設定 

hkey_local_machine\software\oracle\homexx\nls_lang 

unix: 

# 常用unicode字符集 

export nls_lang=american_america.al32utf8 

# 常用中文字符集 

export nls_lang="simplified chinese_china".zhs16gbk 

可以編輯 bash_profile 檔案進行永久設定 

vi .bash_profile 

nls_lang="simplified chinese_china".zhs16gbk export nls_lang 

# 使 bash_profile 設定生效 

source .bash_profile

借鑑的大神的:

oracle的一些命令

create tablespace datafile data 00.dbf size 500m create user identified by passwd default tablespace tbs temporary tablespace temp create table id int...

oracle的一些SQL命令

第四章 1 邏輯備份 1 必備引數 exp system abc123 file d b.dmp 該命令並未指定登陸到哪個資料庫例項,因此,將使用系統環境變數 oracle sid 所指定的資料庫例項。2 owner 引數 exp system abc123 owner test,oracle fi...

Oracle 中的一些命令

檢視當前使用者所屬的表空間 select tablespace name from user tablespaces 檢視資料庫所有的表空間 檢視的使用者得有檢視的許可權 select tablespace name from dba tablespaces 檢視使用者的表空間配額 select f...