如何正確把Oracle資料匯出成Txt 的格式?

2021-05-23 11:23:15 字數 847 閱讀 7973

以下主要介紹的是如何正確的把oracle資料匯出成txt 的格式,oracle資料匯出成txt 在實際應用中的比例還是比較常見的,以下的文章主要是對實際操作方案的描述,以下就是正文的主要內容的描述。

oracle資料庫提供的sql功能很好很強大,用得越多越覺得自己淺薄無知。

上週做系統演示時需要手工製造一些文字資料充當資料來源,想偷偷懶就用了toad工具直接查詢後匯出成csv格式。今天正好有點時間,整理了一下思路,用sql去實現文字資料的生成。寫了大致框架,有空時再來完善吧。

步驟如下:

新建乙個sql指令碼 d:/czrk.sql,**如下: set echo off

set feedback off  set newpage none  set pagesize 50000  set linesize 20000  set verify off  set pagesize 0  set term off  set trims on  set heading off  set trimspool on  set trimout on  set timing off  set verify off  set colsep |  spool d:/czrk.txt  select sfzh || ',' || xm || ',' || xb || ',' || csrq || ',' || mz|| ',' || xzqh|| ',' || jzdz from m_czrk where rownum<=10000;  spool off  

oracle資料匯出成txt格式:sqlplus連線上資料庫,執行指令碼

sqlplus dc/dc@mydb;  sqlplus>@d:/czrk.sql 

這樣就在d盤下生成了一萬條資料了。

oracle 如何匯出資料字典

查詢某錶的資料字典 select a.table name as 表名 a.column name as 欄位名 decode a.char length,0,decode a.data scale,null,a.data type,a.data type a.data precision a.da...

oracle 如何匯出資料字典

查詢某錶的資料字典 select a.table name as 表名 a.column name as 欄位名 decode a.char length,0,decode a.data scale,null,a.data type,a.data type a.data precision a.da...

oracle資料匯出

資料匯出 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d export.dmp中 exp system manager test file d export.dmp full y 2 將資料庫中system使用者與sys使用者的表匯出 exp system man...