plsql配置 orcale基本語法 中文亂碼

2021-09-07 22:42:57 字數 938 閱讀 2789

安裝plsql之前要安裝oracle客戶端

net configuration assistant配置

select * from all_tab_comments

-- 查詢所有使用者的表,檢視等

select * from user_tab_comments  

-- 查詢本使用者的表,檢視等

select * from all_col_comments

--查詢所有使用者的表的列名和注釋.

select * from user_col_comments

-- 查詢本使用者的表的列名和注釋

select * from all_tab_columns

--查詢所有使用者的表的列名等資訊(詳細但是沒有備註).

select * from user_tab_columns

--查詢本使用者的表的列名等資訊(詳細但是沒有備註).

--一般使用1:

select t.table_name,t.comments from user_tab_comments t

--一般使用2:

select r1, r2, r3, r5

from (select a.table_name r1, a.column_name r2, a.comments r3

from user_col_comments a),

(select t.table_name r4, t.comments r5 from user_tab_comments t)

where r4 = r1

以上就是oracle查詢使用者所有表的語句介紹。

中文亂碼

新增環境變數

我的電腦--屬性--環境變數

使用者環境變數

新建變數:nls_lang 

值:simplified chinese_china.zhs16gbk

PL SQL基本操作

1 常規過程化形式 declare o booking flag char 10 begin call the procedure destine ticket 000000037 20,e 2,o booking flag dbms output.put line o booking flag e...

PL SQL 亂碼問題和基本的配置實用

建立乙個名為 nls lang 的系統環境變數,設定其值為 simplified chinese china.zhs16gbk 然後重新啟動 pl sql developer,這樣檢索出來的中文內容就不會是亂碼了。如果想轉換為utf8字符集,可以賦予 nls lang 為 american amer...

PLSQL配置教程

提取碼 hei9 plsql資料夾一定要放在d install下 一.目錄結構 d install plsql instantclient 11 2 tnsnames.ora plsql developer readme.txt 二.環境變數 環境變數設定步驟 右擊我的電腦 屬性 高階系統設定 環境...