Bulk Insert出現拒絕訪問的問題解決方案,bulkinsert

來源:互聯網
上載者:User

Bulk Insert出現拒絕訪問的問題解決方案,bulkinsert

將txt等檔案大量匯入到SQL Server:

truncate table dbo.lb_寬頻離網預測建模資料1501

Bulk insert lb_寬頻離網預測建模資料1501
from 'F:\\寬頻清單\\201501.txt'  
with  
(   
FIELDTERMINATOR = '$',
ROWTERMINATOR = '\n',
MAXERRORS=100
)  
truncate table dbo.lb_寬頻離網預測建模資料1501

但在匯入時遇到:

會報“由於無法開啟檔案。。。,無法進行大量載入。作業系統錯誤碼為5(拒絕訪問)” 。


原因:

當你試圖想BULK INSERT匯入遠程網路檔案時,其實使用的是SQL SERVER的內建賬戶去訪問網路檔案的,預設是沒有許可權訪問網路檔案的。


解決方案:

更改SQL SERVER服務的登入身份為系統管理員或其他有許可權訪問的賬戶。


(1)開啟SQL SERVER configuration managaer,雙擊SQL SERVER服務

(2)在彈出的對話方塊,修改登入身份為“本地賬戶”,輸入一個有許可權訪問遠程網路檔案的使用者。

(3)重啟服務即可。


“未能開啟檔案...系統找不到指定路徑” 出現錯誤,一般是沒有將檔案匯入到SQL Server伺服器的磁碟中去。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.