【背景說明】
最近在幫同事維護oa系統,需要檢視oracle資料庫的所有表結構,又不想乙個乙個表的匯出建表語句。搜到這個,於是和大家分享一下:)
【oracle匯出所有表結構sql】
(說明:此sql語句是通用的,直接可以拿來用,爽!當然若有額外需求,請根據實際情況修改)
select b.table_name as "表名",
c.comments as "表說明",
b.column_id as "字段序號",
b.column_name as "欄位名",
b.data_type as "字段資料型別",
b.data_length as "資料長度",
b.data_precision as "整數字",
b.data_scale as "小數字",
a.comments as "字段說明"
from all_col_comments a, all_tab_columns b, all_tab_comments c
where a.table_name in (select u.table_name from user_all_tables u)
and a.owner = b.owner
and a.table_name = b.table_name
and a.column_name = b.column_name
and c.table_name = a.table_name
and c.owner = a.owner
order by a.table_name, b.column_id
(全文完) Oracle 匯出表結構
分析oracle下匯出某使用者所有表的方法 可能很多使用oracle的客戶都會遇到想把某使用者所有表匯出的情況,本文就提供這樣乙個方法幫你輕鬆解決這個問題。首先在sqlplus下以該使用者登入到oracle資料庫,然後將以下內容貼上到sqlplus中 set feedback off set pag...
oracle 匯出表結構
匯出資料庫表結構 不包括資料 since 2011 8 8 author lxc 今天boss讓我把資料庫裡的資料全部刪了,然後把資料庫部署到伺服器上,而我的做法就是傻傻的把資料庫中的記錄給刪了,然後把資料庫匯出,再部署到伺服器上。有個同事提醒我,說可以只匯出資料庫的表結構,而不要資料。哈哈,沒想到...
oracle 表結構匯出
場景 做oracle 資料庫遷移,需將資料庫表結構匯出來 解決方法一 plsql怎樣匯出oracle表結構 tools export user objects是匯出表結構 tools export tables 是匯出表結構還有資料 解決方法二 exp 命令 exp test test sid fi...