Oracke大欄位Blob匯出到檔案
Export BLOB Contents Using UTL_FILE
[@more@]In a previous article I explained how to export the contents of a BLOB to a file using a Java stored procedure. In Oracle9i (9.2) it is also possible to perform this operation using new functionality provided by the UTL_FILE package.
First we create a directory object pointing to the destination directory:
CREATE OR REPLACE DIRECTORY BLOBS AS 'C:';
Next we open the BLOB, read chunks into a buffer and write them to a file:
DECLARE
l_file UTL_FILE.FILE_TYPE;
l_buffer RAW(32767);
l_amount BINARY_INTEGER := 32767;
l_pos INTEGER := 1;
l_blob BLOB;
l_blob_len INTEGER;
BEGIN
-- Get LOB locator
SELECT col1
INTO l_blob
FROM tab1
WHERE rownum = 1;
l_blob_len := DBMS_LOB.GETLENGTH(l_blob);
-- Open the destination file.
l_file := UTL_FILE.FOPEN('BLOBS','MyImage.gif','w', 32767);
-- Read chunks of the BLOB and write them to the file
-- until complete.
WHILE l_pos < l_blob_len LOOP
DBMS_LOB.READ (l_blob, l_amount, l_pos, l_buffer);
UTL_FILE.PUT_RAW(l_file, l_buffer, TRUE);
l_pos := l_pos + l_amount;
END LOOP;
-- Close the file.
UTL_FILE.FCLOSE(l_file);
EXCEPTION
WHEN OTHERS THEN
-- Close the file if something goes wrong.
IF UTL_FILE.IS_OPEN(l_file) THEN
UTL_FILE.FCLOSE(l_file);
END IF;
RAISE;
END;
Finally, you can check the file is produced correctly.
Note: Port-specific Bug #2546782, raised against 9.2.0 on Windows 2000, reports wrong output from Utl_File.Put_Raw.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/300209/viewspace-811626/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- BLOB及CLOB欄位處理
- 如何將資料熱匯出到檔案
- hibernate中blob大2進位制檔案的問題?
- 將dataGridView內容匯出到Excel檔案ViewExcel
- MySQL 將查詢結果匯出到檔案MySql
- 乾貨:blob匯出檔案亂碼解決方案
- 從資料庫中blob欄位中,下載word檔案,word檔案全是亂碼,怎麼會事啊資料庫
- 實用小指令碼——mysql/mongo 匯出到本地檔案指令碼MySqlGo
- hive匯出到csv hive匯出到excelHiveExcel
- 將資料庫照片大欄位下卸到檔案系統,照片檔名以某一個欄位命名資料庫
- SQLLDR——CTL檔案:欄位設定SQL
- 大文字資料,匯入匯出到資料庫資料庫
- PHP 操作 mysql blob 資料型別的欄位PHPMySql資料型別
- Oracle lob載入bfile資料到blob欄位中Oracle
- varchar or blob:欄位型別的儲存和溢位條件型別
- sqlloader匯入資料_資料檔案的欄位超出最大長度SQL
- MySQL 匯出匯入二進位制檔案MySql
- 阿里雲數倉Dataworks資料匯出到檔案step by step阿里
- MySQL中TEXT與BLOB欄位型別的區別MySql型別
- 關於oracle中blob欄位的錄入問題Oracle
- Oracle中Blob欄位的寫入處理(一) (轉)Oracle
- SQLServer匯入大CSV檔案SQLServer
- oracle 大檔案匯出方法Oracle
- oracle匯出到4G時提示終止寫入DMP檔案Oracle
- 關於Thinkphp 使用AdvModel來讀取Blob欄位PHP
- Oracle10g Logminer處理BLOB欄位錯誤Oracle
- java 匯出到EXCELJavaExcel
- spring+hibernate檔案上傳並放入大欄位的處理Spring
- MySQL匯入匯出檔案檔案MySql
- 匯出到Excel的操作Excel
- 記錄:匯出檔案為十六進位制
- PHP 匯出大資料 CSV 檔案PHP大資料
- MySQL 大欄位問題MySql
- Oracle中的大欄位Oracle
- 表存在Clob、Blob欄位,dblink報錯的解決辦法
- 在VC中用OLE DB讀寫SQL Server中的BLOB欄位 (轉)SQLServer
- /etc/shadow檔案相關欄位的解釋
- 將命令列提示符裡的執行結果匯出到text檔案中命令列