熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> SQL Server >> 正文

使用SQL Server*Loader進行數據導入

2022-06-13   來源: SQL Server 

  環境說明
  數據庫OracleOEM;
  系 統Windows Server
  *****************************************************
  用記事本創建控制文件inputctl內容如下
  
  load data
  infile testtxt 數據文件
  append into table Test
  fields terminated by | 或者是x來標識也即字段終止與制表符TAB
  (  字段名稱
  cp_bh char()
  mc char()
  cp_ljmc char()
  zyh char()
  dj
  )
  
  *****************************************************
  
  文本文件testtxt中的內容格式例如下面
  
  |XPBS|後蓋 PP kg|   |
  |XPBS|洗滌桶蓋 淺蘭透明ABS|   |
  
  一般情況都是相互之間導出導入數據比方說從excel導出的數據你可以將其保存為制表符分隔起名為test……等等
  *****************************************************
  使用sql*loader進行數據導入(sqlldr ? 查看幫助)
  
  在運行裡執行命令如下
  
   sqlldr username/pw control=路徑\inputctl data=路徑\testtxt log=路徑 bad=路徑
  
  (完)
From:http://tw.wingwit.com/Article/program/SQLServer/201311/21996.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.