oracle匯出某個表的表結構

2021-05-23 07:59:13 字數 607 閱讀 7730

和大家分享下

用這個指令碼,可以匯出表結構到./tab248_20091217.sql 檔案中

set colsep ''

set trimspool on

set long 90000

set linesize 120

set pagesize 2000

set newpage 1

set heading off

set term off

spool ./tab248_20091217.sql

select  '--' || a.table_name ||'(' || a.comments ||')'||chr(3)||chr(9)||

dbms_metadata.get_ddl(a.table_type,

a.table_name,

null,

'compatible',

'oracle',

'ddl') ||';' as createsql

from user_tab_comments  a

where  a.table_name not like 'bin%';

spool off

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...